Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
84785 叶城俊 15求n!>m C++ Accepted 1 MS 272 KB 185 2024-07-16 14:33:16

Tests(10/10):


Code:

# include <iostream> using namespace std; int main (){ int n=1,m,i=0; cin>>m; while(n<m){ i++; n=n*i; } cout<<i; return 0; }