比赛 exam 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 棋盘上的車 最终得分 100
用户昵称 Emine 运行时间 0.004 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-07-04 07:48:49
显示代码纯文本
#include<iostream>
#include<cstdio>
#define ll long long
using namespace std;
 
ll n,ans=1;
 
int main(){
	freopen("rook.in","r",stdin);
	freopen("rook.out","w",stdout);
	scanf("%lld",&n);
	for(long long i=1;i<=n;i++)
	  ans*=i;
	printf("%lld",ans);
	return 0;
}