結果

問題 No.884 Eat and Add
ユーザー QCFiumQCFium
提出日時 2019-08-22 21:03:01
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 1,000 ms
コード長 454 bytes
コンパイル時間 1,564 ms
コンパイル使用メモリ 163,908 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-20 23:49:59
合計ジャッジ時間 2,339 ms
ジャッジサーバーID
(参考情報)
judge5 / judge7
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 7 ms
6,940 KB
testcase_05 AC 6 ms
6,944 KB
testcase_06 AC 7 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0