比赛 exam 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 棋盘上的車 最终得分 100
用户昵称 Menamovic 运行时间 0.004 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-07-03 19:22:45
显示代码纯文本
#include<bits/stdc++.h>

using namespace std;

int n;
long long ans=1;

int main()
{
	freopen("rook.in","r",stdin);
	freopen("rook.out","w",stdout);
	scanf("%d",&n);
	for(int i=1;i<=n;i++)
	{
		ans*=i;
	}
	printf("%lld",ans);
	return 0;
}