Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
169792 仇浩然B班 高精度阶乘 C++ 解答错误 40 1 MS 248 KB 152 2024-08-20 17:06:41

Tests(4/10):


#include<bits/stdc++.h> using namespace std; int main(){ int n,m=1; cin>>n; for(int i=1;i<=n;i++){ m*=i; }cout<<n<<"!="<<m; return 0; }


测评信息: