結果
問題 | No.884 Eat and Add |
ユーザー | merom686 |
提出日時 | 2019-09-13 21:49:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 1,000 ms |
コード長 | 704 bytes |
コンパイル時間 | 635 ms |
コンパイル使用メモリ | 73,440 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 04:08:40 |
合計ジャッジ時間 | 1,172 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; using ll = long long; int main() { ios::sync_with_stdio(false); cin.tie(0); string s; cin >> s; int n = s.size(); int r = 0; for (int i = n - 1; i >= 0; i--) { if (s[i] == '1') { r++; if (i > 0 && s[i - 1] == '1') { while (i >= 0 && s[i] == '1') i--; if (i < 0) { r++; break; } s[i] = '1'; i++; } } } cout << r << endl; return 0; }