結果

問題 No.884 Eat and Add
ユーザー ks2mks2m
提出日時 2019-09-13 22:05:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 231 ms / 1,000 ms
コード長 649 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 43,464 KB
最終ジャッジ日時 2024-07-04 09:43:39
合計ジャッジ時間 5,035 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,272 KB
testcase_01 AC 126 ms
41,080 KB
testcase_02 AC 127 ms
41,464 KB
testcase_03 AC 228 ms
43,464 KB
testcase_04 AC 223 ms
42,680 KB
testcase_05 AC 216 ms
43,020 KB
testcase_06 AC 231 ms
42,584 KB
testcase_07 AC 224 ms
42,764 KB
testcase_08 AC 224 ms
42,980 KB
testcase_09 AC 215 ms
42,676 KB
testcase_10 AC 128 ms
41,432 KB
testcase_11 AC 129 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		String n = sc.next();
		sc.close();

		StringBuilder sb = new StringBuilder(n);
		sb.reverse().append("0");
		int ans = 0;
		boolean flg = false;
		for (int i = 0; i < n.length(); i++) {
			if (flg) {
				if (sb.charAt(i) == '0') {
					ans++;
					if (sb.charAt(i + 1) == '0') {
						flg = false;
					}
				}
			} else {
				if (sb.charAt(i) == '1') {
					ans++;
					if (sb.charAt(i + 1) == '1') {
						flg = true;
					}
				}
			}
		}
		if (flg) {
			ans++;
		}
		System.out.println(ans);
	}
}
0