Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
85751 黄睿杰 一起找规律 C++ Accepted 1 MS 260 KB 164 2024-07-20 11:46:53

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int a[1000][1000]; int main(){ int s=1; for(int i=1;i<=30;i++){ cout<<s<<" "; s=s*2+1; } return 0; }