結果

問題 No.884 Eat and Add
ユーザー tentententen
提出日時 2021-11-19 11:48:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 1,000 ms
コード長 1,444 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 78,196 KB
実行使用メモリ 51,984 KB
最終ジャッジ日時 2024-06-09 16:01:55
合計ジャッジ時間 4,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
49,992 KB
testcase_01 AC 48 ms
50,412 KB
testcase_02 AC 47 ms
50,388 KB
testcase_03 AC 106 ms
51,944 KB
testcase_04 AC 109 ms
51,984 KB
testcase_05 AC 104 ms
51,896 KB
testcase_06 AC 102 ms
51,984 KB
testcase_07 AC 108 ms
51,944 KB
testcase_08 AC 103 ms
51,980 KB
testcase_09 AC 100 ms
51,916 KB
testcase_10 AC 46 ms
50,412 KB
testcase_11 AC 49 ms
50,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] values = sc.next().toCharArray();
        int plus = 2;
        int normal = 0;
        for (int i = values.length - 1; i >= 0; i--) {
            int nextPlus;
            int nextNormal;
            if (values[i] == '1') {
                nextPlus = Math.min(plus, normal + 1);
                nextNormal = normal + 1;
            } else {
                nextPlus = plus + 1;
                nextNormal = Math.min(plus + 1, normal);
            }
            plus = nextPlus;
            normal = nextNormal;
        }
        System.out.println(Math.min(plus + 1, normal));
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0