結果
問題 | No.884 Eat and Add |
ユーザー | QCFium |
提出日時 | 2019-08-22 21:03:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 7 ms / 1,000 ms |
コード長 | 454 bytes |
コンパイル時間 | 1,606 ms |
コンパイル使用メモリ | 167,196 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 22:07:58 |
合計ジャッジ時間 | 2,398 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 7 ms
6,824 KB |
testcase_04 | AC | 7 ms
6,816 KB |
testcase_05 | AC | 7 ms
6,816 KB |
testcase_06 | AC | 7 ms
6,816 KB |
testcase_07 | AC | 6 ms
6,816 KB |
testcase_08 | AC | 7 ms
6,816 KB |
testcase_09 | AC | 6 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> int main() { std::string s; std::cin >> s; std::reverse(s.begin(), s.end()); int n = s.size(); int res = 0; for (int i = 0; i < n; i++) { if (s[i] == '0') continue; int j = i; int cost = 1; while (j > 1) { if (s[j - 1] == '1' && s[j - 2] == '1') { cost = 0; break; } if (s[j - 1] == '1' && s[j - 2] == '0') j -= 2; else break; } res += cost; } std::cout << res << std::endl; return 0; }