QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#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;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3816kb
input:
1
output:
2
result:
wrong answer 1st numbers differ - expected: '1', found: '2'