比赛 2025.1.14 评测结果 WWWWWWWWWWWWWWWWWWWWWWWWW
题目名称 树的遍历 最终得分 0
用户昵称 彭欣越 运行时间 0.077 s
代码语言 C++ 内存使用 3.39 MiB
提交时间 2025-01-14 21:56:35
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int T;
int main () {
    freopen("traverse.in","r",stdin);
    freopen("traverse.out","w",stdout); 
    ios::sync_with_stdio(0);
    cin.tie(0),cout.tie(0);
    cin >> T;
    while (T--) {
        cout << 1 <<endl;
    }
    return 0;
}