1 条题解

  • 4
    @ 2024-6-29 18:09:57

    一般来说,Sleeping Cup 中的所有题目均需要文件读写。请在「文件 IO」一栏获知文件名信息。

    Code:

    #include <bits/stdc++.h>
    
    using namespace std;
    
    int main()
    {
       freopen("test.in", "r", stdin);
       freopen("test.out", "w", stdout);
       printf("Hello, World!");
       return 0;
    }
    
    • 1

    信息

    ID
    1
    时间
    1000ms
    内存
    512MiB
    难度
    1
    标签
    递交数
    37
    已通过
    13
    上传者