Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96757 叶城俊 19神秘数字 C++ Accepted 1 MS 260 KB 284 2024-11-09 13:19:11

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int n=0; while(1){ if(n%8==1&&n/8%8==1&&n/8/8%8==7){ if(n%17==4&&n/17%17==15){ if(2*(n/8/8/8)==n/17/17){ cout<<n; return 0; } } }n++; } return 0; }