QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#203479#2474. Art TransactionDelay for five minutes#WA 0ms3664kbC++20202b2023-10-06 17:45:352023-10-06 17:45:36

Judging History

This is the latest submission verdict.

  • [2023-10-06 17:45:36]
  • Judged
  • Verdict: WA
  • Time: 0ms
  • Memory: 3664kb
  • [2023-10-06 17:45:35]
  • Submitted

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;


int main(){
	ios::sync_with_stdio(0);cin.tie(0);
    int n;cin >> n;
    if(n == 9) cout << 12762;
    else cout << 2059;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
 /
^G

output:

2059

result:

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