QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#372545#5574. Julienne the Deckflying#WA 1ms3816kbC++14161b2024-03-31 15:15:362024-03-31 15:15:36

Judging History

你现在查看的是最新测评结果

  • [2024-03-31 15:15:36]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3816kb
  • [2024-03-31 15:15:36]
  • 提交

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'