結果
問題 | No.2247 01 ZigZag |
ユーザー | tsugutsugu |
提出日時 | 2023-03-17 21:49:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,100 bytes |
コンパイル時間 | 1,548 ms |
コンパイル使用メモリ | 172,064 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-18 10:40:02 |
合計ジャッジ時間 | 4,651 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | RE | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 2 ms
5,376 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | RE | - |
testcase_51 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n, m, k; cin >> n >> m >> k; if (m == n + 1 && k == n + m - 1) { for (int i = 0; i < n + m; i++) { if (i & 1) { cout << '0'; } else { cout << '1'; } } cout << '\n'; return 0; } vector<string> can; string x = "0"; bool ok1 = true; int kk = k, nn = n, mm = m; while (kk--) { if (x.back() == '0') { x += '1'; mm--; if (mm < 0) { ok1 = false; break; } } else { x += '0'; nn--; if (nn < 0) { ok1 = false; break; } } } if (ok1 && x.back() == '1') { can.push_back(string(nn, '0') + x + string(mm, '1')); } else if (ok1) { x.pop_back(); can.push_back(string(nn, '0') + x + string(mm, '1') + '0'); } cout << can[0] << '\n'; }