QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#605668#9107. Zayin and Countjiangzhihui#WA 2ms3636kbC++14442b2024-10-02 18:26:492024-10-02 18:26:50

Judging History

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

  • [2024-10-02 18:26:50]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:3636kb
  • [2024-10-02 18:26:49]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
void solve() {
  vector<int> b;
  for (int i = 0; i < 10; i++) {
    int x;
    cin >> x;
  }
  for (int i = 0; i < 10; i++) {
    int x;
    cin >> x;
    if (x == 1) b.push_back(i);
  }
//   assert(!b.empty());
  unsigned long long x;
  cin >> x;
}
int main() {
  std::ios::sync_with_stdio(false), cin.tie(0);

  int T;
  cin >> T;
  while (T--) solve();

  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 2ms
memory: 3636kb

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:

wrong answer 1st lines differ - expected: '52755244567262766742575722', found: ''