QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#81825#5574. Julienne the Decklc174#WA 1ms1748kbC++14285b2023-02-26 14:21:562023-02-26 14:21:58

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-02-26 14:21:58]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:1748kb
  • [2023-02-26 14:21:56]
  • 提交

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'