結果
問題 | No.2038 Strange Arrange |
ユーザー | srjywrdnprkt |
提出日時 | 2023-05-13 03:18:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 570 bytes |
コンパイル時間 | 1,026 ms |
コンパイル使用メモリ | 109,520 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 15:31:43 |
合計ジャッジ時間 | 1,882 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> #include <cassert> using namespace std; using ll = long long; int main(){ int N; cin >> N; string S=""; vector<char> v; for (int i=2; i<=9; i++){ for (int j=0; j<(1<<(i-1)); j++) v.push_back(i+'0'); } for (int i=0; i<N; i++){ if (i % 2 == 0) S += '1'; else S += v[i/2]; } cout << S << endl; return 0; }