Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
114662 | 毛靖平 | 15求n!>m | C++ | Wrong Answer | 1 MS | 264 KB | 218 | 2025-03-22 20:54:15 |
#include<iostream> // cin\cout\endl using namespace std; int main(){ long long a; int b=1,c=0; cin>>a; while(a>b){ b+=1; c*=b; } cout<<c<<endl; return 0; }
------Input------
6876
------Answer-----
8
------Your output-----
0