QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#508953#6418. Ah, It's Yesterday Once Morezzz111WA 0ms3608kbC++201.1kb2024-08-07 22:27:182024-08-07 22:27:19

Judging History

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

  • [2024-08-07 22:27:19]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3608kb
  • [2024-08-07 22:27:18]
  • 提交

answer

#include <bits/stdc++.h>
#define fr(i, a, b) for (int(i) = (a); (i) <= (b); (i)++)
using namespace std;

signed main()
{
    ios::sync_with_stdio(false);
    cin.tie(0), cout.tie(0);
    cout << "20 20" << endl;
    cout << "10111110111110111110" << endl;
    cout << "11011011011011011011" << endl;
    cout << "01101101101101101101" << endl;
    cout << "10110110110110110110" << endl;
    cout << "11011011011011011011" << endl;

    cout << "01101101101101101101" << endl;
    cout << "10110110110110110111" << endl;
    cout << "11011011011011011011" << endl;
    cout << "01101101101101101100" << endl;
    cout << "10110110110110110110" << endl;

    cout << "11011011011011011011" << endl;
    cout << "01101101101101101101" << endl;
    cout << "10110110110110110111" << endl;
    cout << "11011011011011011011" << endl;
    cout << "11101101101101101100" << endl;

    cout << "10110110110110110110" << endl;
    cout << "11011011011011011011" << endl;
    cout << "01101101101101101101" << endl;
    cout << "10110110110110101111" << endl;
    cout << "11111011011111111001" << endl;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3608kb

input:



output:

20 20
10111110111110111110
11011011011011011011
01101101101101101101
10110110110110110110
11011011011011011011
01101101101101101101
10110110110110110111
11011011011011011011
01101101101101101100
10110110110110110110
11011011011011011011
01101101101101101101
10110110110110110111
11011011011011011011
...

result:

wrong answer Cycle Detected.