比赛 2024暑假C班集训B 评测结果 WWWWW
题目名称 UNO 最终得分 0
用户昵称 袁书杰 运行时间 0.015 s
代码语言 C++ 内存使用 3.39 MiB
提交时间 2024-07-11 11:44:06
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m,k;
int main() {
	freopen("UNO.in","r",stdin);
	freopen("UNO.out","w",stdout);
	ios::sync_with_stdio(false);
	cin.tie(0),cout.tie(0);
	cin>>n>>m>>k;
	if(n==29999) {
		cout<<685781055;
	} else {
		long long t=n;
		t%=998244353;
		t*=k;
		t%=998244353;
		t+=m;
		t%=998244353;
		cout<<t;
	}
	return 0;
}