結果

問題 No.1402 ビル街
ユーザー umezoumezo
提出日時 2021-02-20 00:13:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 2,381 ms
コンパイル使用メモリ 201,080 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-17 00:44:37
合計ジャッジ時間 9,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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]=(i&(-i))+1;
  }
  
  rep(i,n+2){
    if(i) cout<<" ";
    cout<<A[i];
  }
  cout<<endl;

  return 0;
}
0