QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#81825 | #5574. Julienne the Deck | lc174# | WA | 1ms | 1748kb | C++14 | 285b | 2023-02-26 14:21:56 | 2023-02-26 14:21:58 |
Judging History
answer
//#pragma GCC optimize(2)
#include<cstdio>
using namespace std;
inline int read(){
int x,ch;while((ch=getchar())<48||57<ch);
x=ch^48;while(47<(ch=getchar())&&ch<58)x=x*10+(ch^48);
return x;
}
int n;
int main(){
scanf("%d",&n);
printf("%lld",2ll*n%998244353ll);
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 1748kb
input:
1
output:
2
result:
wrong answer 1st numbers differ - expected: '1', found: '2'