結果

問題 No.884 Eat and Add
ユーザー ks2mks2m
提出日時 2019-09-13 21:58:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 56,988 KB
最終ジャッジ日時 2024-07-04 04:14:19
合計ジャッジ時間 4,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 125 ms
54,268 KB
testcase_02 AC 124 ms
53,972 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 219 ms
56,680 KB
testcase_09 AC 219 ms
56,408 KB
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

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 (sb.charAt(i) == '1') {
				if (!flg) {
					ans++;
					flg = true;
				}
			} else {
				if (flg) {
					ans++;
					if (sb.charAt(i + 1) == '0') {
						flg = false;
					}
				}
			}
		}
		if (flg) {
			ans++;
		}
		System.out.println(ans);
	}
}
0