记录编号 | 418031 | 评测结果 | AAAAAAAAAAAAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 棋盘上的車 | 最终得分 | 100 | ||
用户昵称 | Emine | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.003 s | ||
提交时间 | 2017-06-29 08:30:26 | 内存使用 | 0.31 MiB | ||
#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; }