Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
101823 吕毅心 19神秘数字 C++ Accepted 1 MS 260 KB 311 2024-12-19 19:00:20

Tests(1/1):


Code:

#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/8)*2==i/17/17){ if(i%8==1&&i/8%8==1&&i%17==4&&i/17%17==15){ cout<<i; return 0; }} } }