QOJ.ac
QOJ
QOJ is currently under a maintenance. It might be unavailable in the following a few hours.
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#372545 | #5574. Julienne the Deck | flying# | WA | 1ms | 3816kb | C++14 | 161b | 2024-03-31 15:15:36 | 2024-03-31 15:15:36 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int Mod=998244353;
int main()
{
long long n;
cin >> n;
printf("%lld\n",n*2%Mod);
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3816kb
input:
1
output:
2
result:
wrong answer 1st numbers differ - expected: '1', found: '2'