結果
問題 | No.1402 ビル街 |
ユーザー | umezo |
提出日時 | 2021-02-20 00:17:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 389 bytes |
コンパイル時間 | 1,855 ms |
コンパイル使用メモリ | 203,172 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-17 01:01:06 |
合計ジャッジ時間 | 7,606 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<int> A(n+2,1); A[0]=2000000000; A[n+1]=2000000000; for(int i=1;i<=n;i++){ A[i]=2*(i&(-i))+i; } rep(i,n+2){ if(i) cout<<" "; cout<<A[i]; } cout<<endl; return 0; }