QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#708338#4379. Grammarhejinming983282#WA 0ms3576kbC++23734b2024-11-03 21:32:372024-11-03 21:32:38

Judging History

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

  • [2024-11-03 21:32:38]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3576kb
  • [2024-11-03 21:32:37]
  • 提交

answer

// Author : hejinming2012
#include <bits/stdc++.h>
#define int long long
#define endl '\n'
#define dbg(x) cout << #x " = " << (x) << endl
#define quickio ios::sync_with_stdio(false);
#define quickin cin.tie(0);
#define quickout cout.tie(0);

using namespace std;
inline int read() {
    int now = 0, nev = 1; char c = getchar();
    while(c < '0' || c > '9') { if(c == '-') nev = -1; c = getchar(); }
    while(c >= '0' && c <= '9') { now = (now << 1) + (now << 3) + (c & 15); c = getchar(); }
    return now * nev;
}
void write(int x) {
    if(x < 0) putchar('-'), x = -x;
    if(x > 9) write(x / 10);
    putchar(x % 10 + '0');
}

signed main() {
    quickio
    quickin
    quickout
    
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

10
1000 1000
[1]->ymkl[794]l[2]a[106]v[2][97]x[9]udiq[3]jrpt[265]l[111]w[43]jnb[4]dpjp[3][23]q[511]roml[49][20]j[34][4]qcgjv[443]qg[2][201]j[75]y[2]qi[51][49]y[536]vxdo[243]h[431]vp[470]i[154][30]uhvipimij[65]zoe[36]r
[2]->gka[94][216][410]or[58]v[12][3]gf[20]u[328][115][71][79]j[239][102][3]y[46]mr...

output:


result:

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