QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#372545#5574. Julienne the Deckflying#WA 1ms3816kbC++14161b2024-03-31 15:15:362024-03-31 15:15:36

Judging History

This is the latest submission verdict.

  • [2024-03-31 15:15:36]
  • Judged
  • Verdict: WA
  • Time: 1ms
  • Memory: 3816kb
  • [2024-03-31 15:15:36]
  • Submitted

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'