QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#699191#7627. PhonyRegina#WA 0ms3652kbC++14512b2024-11-02 04:05:152024-11-02 04:05:15

Judging History

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

  • [2024-11-02 04:05:15]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3652kb
  • [2024-11-02 04:05:15]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=2e5+10,inf=1e18;
inline int read(){
    int r=0,f=1;char c=getchar();
    while(!isdigit(c)){if(c=='-')f=-1;c=getchar();}
    while(isdigit(c))r=(r<<1)+(r<<3)+(c^48),c=getchar();
    return r*f;
}
void put(int x){
    if(x<0){putchar('-');x=~x+1;}
    if(x>9)put(x/10);
    putchar(x%10+'0');
}
signed main(){
  //  freopen("cpp.in","r",stdin);
//    freopen("cpp.out","w",stdout);

    return puts("会了"),0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3 5 5
7 3 9
A 3
C 1
A 2
C 2
A 3

output:

会了

result:

wrong answer 1st lines differ - expected: '3', found: '会了'