Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
168634 李熙宸 高精度阶乘 C++ 解答错误 50 0 MS 244 KB 304 2024-08-20 12:29:11

Tests(5/10):


#include <iostream> using namespace std; long long factorial(int n) { long long result = 1; for(int i = 2; i <= n; ++i) result *= i; return result; } int main() { int n; cin >> n; cout << n << "!=" << factorial(n) << endl; return 0; }


测评信息: