比赛 Asm_Def战记之透明计算网络 评测结果 WWWAAAAWWW
题目名称 Asm_Def三角形 最终得分 40
用户昵称 mikumikumi 运行时间 0.002 s
代码语言 C++ 内存使用 0.29 MiB
提交时间 2015-11-01 11:39:58
显示代码纯文本
#include<cstdio>
using namespace std;
typedef long long ll;
int n;
ll mod=998244353;
ll N;
ll quickpow(ll x,ll y)
{
	ll c=1;
	while(y)
	{
		if(y&1)c*=x;
		c%=mod;
		x=(x*x)%mod;
		y>>=1;
	}
	return c;
}
int main()
{
	freopen("tria.in","r",stdin);
	freopen("tria.out","w",stdout);
	scanf("%d",&N);
	N--;
	ll ans=quickpow(2,N);
	printf("%d",ans);
	return 0;
}