結果
問題 | No.2038 Strange Arrange |
ユーザー | umezo |
提出日時 | 2022-08-13 00:50:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 456 bytes |
コンパイル時間 | 1,940 ms |
コンパイル使用メモリ | 201,788 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 18:21:37 |
合計ジャッジ時間 | 2,385 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
ソースコード
#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(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); vector<int> A(501),B(10); B[0]=1; for(int i=1;i<10;i++) B[i]=2*B[i-1]; for(int i=1;i<=9;i++){ for(int j=B[i-1];j<=500;j+=B[i]) A[j]=i; } int n; cin>>n; for(int i=1;i<=n;i++) cout<<A[i]; cout<<endl; return 0; }