| 比赛 | 普及组2016模拟练习3 | 评测结果 | AWWWWAWWAW |
|---|---|---|---|
| 题目名称 | 圆桌会议 | 最终得分 | 30 |
| 用户昵称 | . | 运行时间 | 0.003 s |
| 代码语言 | C++ | 内存使用 | 0.31 MiB |
| 提交时间 | 2016-11-15 20:51:34 | ||
#include<iostream>
#include<iomanip>
#include<cstdio>
using namespace std;
int main(){
freopen("round.in","r",stdin);
freopen("round.out","w",stdout);
int a[11],p,q;
cin>>p>>q;
for(int b=1;b<=p;b++){
cin>>a[b];
}
cout<<2;
return 0;
}