记录编号 425789 评测结果 AAAAAAAAAA
题目名称 [济南集训 2017] 掰巧克力 最终得分 100
用户昵称 GravatarJustWB 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2017-07-15 20:39:00 内存使用 0.29 MiB
显示代码纯文本
#include<cstdio>
#include<cctype>
const long long maxn=998244353;
using namespace std;
inline long long get();
long long n,m;
long long ans;
int main()
{
	freopen("bpmp.in","r",stdin);
	freopen("bpmp.out","w",stdout);
	n=get();m=get();
	ans=((m-1)+m*(n-1))%maxn;
	printf("%lld",ans);
	return 0;
}
inline long long get()
{
 	long long t=0,jud=1;char c=getchar();
	while(!isdigit(c))
	{
 	 	if(c=='-')jud=-1;
		c=getchar();
	}
	while(isdigit(c))
	{
	 	t=(t<<3)+(t<<1)+c-'0';
		c=getchar();
	}
	return t*jud;
}