結果

問題 No.884 Eat and Add
ユーザー htensaihtensai
提出日時 2020-01-28 12:26:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 97 ms / 1,000 ms
コード長 731 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 39,432 KB
最終ジャッジ日時 2024-09-15 11:57:30
合計ジャッジ時間 4,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,680 KB
testcase_01 AC 52 ms
36,524 KB
testcase_02 AC 50 ms
36,784 KB
testcase_03 AC 96 ms
39,376 KB
testcase_04 AC 97 ms
39,188 KB
testcase_05 AC 97 ms
39,084 KB
testcase_06 AC 97 ms
39,340 KB
testcase_07 AC 96 ms
39,120 KB
testcase_08 AC 97 ms
39,432 KB
testcase_09 AC 97 ms
39,428 KB
testcase_10 AC 49 ms
36,492 KB
testcase_11 AC 51 ms
36,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        char[] arr = br.readLine().toCharArray();
        boolean isUp = false;
        int count = 0;
        for (int i = arr.length - 1; i >= 0; i--) {
            boolean now = arr[i] == '1';
            if (isUp ^ now) {
                count++;
                if (i != 0 && arr[i - 1] == '1') {
                    isUp = true;
                } else {
                    isUp = false;
                }
            }
        }
        if (isUp) {
            count++;
        }
        System.out.println(count);
   }
}
0