Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
101822 | 吕毅心 | 19神秘数字 | C++ | Time Limit Exceeded | 1000 MS | 252 KB | 315 | 2024-12-19 18:59:32 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int a,b[6],i; for(i=1;;i++){ if((i/8/8)*2==i/17/17){ if(i%8==1&&i/8%8==1&&i%17==4&&i/17%17==15){ cout<<i; break; }} } return 0; }