Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
151033 赖泓宇 n!大于k C++ Accepted 1 MS 268 KB 367 2026-04-03 19:12:45

Tests(10/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n=1,k,sn=1; cin>>k; for(int i=2;sn<=k;i++){ n++; sn=sn*n; } cout<<n; }