Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
122508 | 胡汪兵-小胡老师 | 19神秘数字 | C++ | Accepted | 1 MS | 260 KB | 226 | 2025-06-21 09:26:29 |
#include<bits/stdc++.h> using namespace std; int main(){ int x1,x2; for(int i=1;;i++) { x1=((i*8+7)*8+1)*8+1; x2=(2*i*17+15)*17+4; if(x1==x2) { cout<<x1; break; } } return 0; }