QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#605687#9107. Zayin and Countjiangzhihui#RE 0ms0kbC++23584b2024-10-02 18:36:562024-10-02 18:36:57

Judging History

你现在查看的是最新测评结果

  • [2024-10-02 18:36:57]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-10-02 18:36:56]
  • 提交

answer

#include <bits/stdc++.h>
#ifndef ONLINE_JUDGE
#include <bits/Bingbong.h>
#endif
using namespace std;
#define i64 long long
#define pi acos(-1)
void solve() {
  int cnt1 = 0;
  for (int i = 1; i <= 10; i++) {
    int x;
    cin >> x;
    if (x == 1) cnt1++;
  }
  assert(cnt1 >= 2);
  int cnt2 = 0;
  for (int i = 1; i <= 10; i++) {
    int x;
    cin >> x;
    cnt2++;
  }
  assert(cnt2 >= 2);
  i64 x;
  cin >> x;
}
int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  cout.tie(0);
  int t = 1;
  cin >> t;
  while (t--) solve();
  return 0;
}

详细

Test #1:

score: 0
Runtime Error

input:

10000
1 0 0 0 1 1 0 0 0 1
0 0 1 0 1 1 1 1 0 0
950595954440050004054505054050
1 0 0 0 1 1 1 1 0 0
1 1 1 0 1 0 0 0 1 1
45467007076660767550460064
1 1 1 1 0 0 0 1 0 0
1 1 0 1 1 0 1 0 0 1
23373171320213300170200722
0 0 0 0 1 1 1 0 1 0
0 0 1 0 0 1 0 1 1 1
558565664666565565558468668484
1 1 0 0 1 0 1 0 1 ...

output:


result: