Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113806 谢佳辰 n!大于k C++ Accepted 1 MS 276 KB 425 2025-03-16 15:52:14

Tests(10/10):


Code:

#include <bits/stdc++.h> using namespace std; int main(){ int n=1,s=1,k; cin>>k; while(1){ s*=n; if(s>k){ break; } n++; } cout<<n<<endl; }