Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
57484 | Ryan123 | S1 | C++ | 解答错误 | 0 | 20 MS | 268 KB | 258 | 2022-10-04 11:28:34 |
#include<bits/stdc++.h> using namespace std; const int Maxn=1e5+5; int n; int main() { ios::sync_with_stdio(false); cin.tie(0),cout.tie(0); cin>>n; for(int i=1,x,y;i<=n;i++) cin>>x>>y; for(int i=1;i<=n;i++) cout<<1<<'\n'; return 0; }