結果
問題 | No.2063 ±2^k operations (easy) |
ユーザー | shoshoshom |
提出日時 | 2022-09-02 22:44:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 933 bytes |
コンパイル時間 | 2,482 ms |
コンパイル使用メモリ | 205,904 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-16 05:04:50 |
合計ジャッジ時間 | 3,094 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | WA | - |
testcase_17 | AC | 3 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | WA | - |
testcase_20 | AC | 3 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 3 ms
6,816 KB |
testcase_23 | AC | 4 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { iostream::sync_with_stdio(0), cin.tie(0), cout.tie(0); string n; cin >> n; vector<pair<int, int>> P; for (char c: n) { int i = c - '0'; if (P.empty() || P.back().first != i) { P.push_back({i, 1}); } else { P.back().second++; } } bool ok = false; int sz = (int)P.size(); if (sz == 1 || sz == 2) { if (P.front().first == 1 && P.front().second > 1) { ok = true; } } else if (sz == 3) { if (P.front().first == 1 && P.front().second > 1 && P[1].first == 0 && P[1].second == 1) { //ok = true; } if (P.front().first == 1 && P.front().second == 1 && P.back().first == 1 && P.back().second == 1) { ok = true; } } else if (sz == 4) { int cnt = 0; for (auto [i, c]: P) { if (i == 1) { cnt += c; } } } cout << (ok ? "Yes" : "No") << '\n'; return 0; }