Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114763 毛靖平 15求n!>m C++ Accepted 1 MS 272 KB 190 2025-03-23 13:33:21

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int a,c=1; int b=1; cin>>a; while(c<a){ b+=1; c*=b; } cout<<b<<endl; return 0; }