Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137825 万骏博 哪几扇门是打开的 C++ Accepted 1 MS 268 KB 181 2025-11-22 17:33:29

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int t=1; int main(){ for(int j=1;j<=100;j++){ if(j==t*t){ printf("%d ",j) ; t++; } } return 0; }