結果

問題 No.884 Eat and Add
ユーザー iqueue02iqueue02
提出日時 2020-06-27 10:37:16
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 8 ms / 1,000 ms
コード長 593 bytes
コンパイル時間 1,873 ms
コンパイル使用メモリ 194,132 KB
最終ジャッジ日時 2025-01-11 12:39:24
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;

int main() {
  string s;
  cin >> s;
  s = '0' + s;
  reverse(s.begin(), s.end());
  int i = 0;
  int n  = s.size();
  int res = 0;
  for (int i = 0; i < n; i++) {
    if (s[i] == '1') {
      if (s[i + 1] == '0') {
        s[i] = '0';
        res++;
      } else {
        while (s[i] == '1') i++;
        s[i] = '1';
        i--;
        res++;
      }
    }
  }
  cout << res << endl;
  return 0;
} 
0