比赛 202110省实验桐柏一中普及组联赛 评测结果 WAWWWWWWWW
题目名称 分配同桌 最终得分 10
用户昵称 radioactive 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2021-10-20 19:40:32
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. long long int n,m,a[10000][3];
  4. int main()
  5. {
  6. freopen("tongzhuo.in","r",stdin);
  7. freopen("tongzhuo.out","w",stdout);
  8. cin>>n>>m;
  9. for(int i=1;i<=n;i++)
  10. {
  11. cin>>a[i][1]>>a[i][2];
  12. }
  13. cout<<5;
  14. return 0;
  15. }