Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
126767 枫原万叶·原神·米哈游 计算n的阶乘 C++ 通过 100 0 MS 196 KB 181 2024-01-24 17:05:12

Tests(3/3):


#include<cstdio> using namespace std; int main() { long long s=1; int n; scanf("%d",&n); for (int i=1; i<=n ;++i) s*=i; printf("%lld\n",s); return 0; }


测评信息: