QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#699191 | #7627. Phony | Regina# | WA | 0ms | 3652kb | C++14 | 512b | 2024-11-02 04:05:15 | 2024-11-02 04:05:15 |
Judging History
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;
}
詳細信息
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: '会了'