結果

問題 No.509 塗りつぶしツール
ユーザー samplelpmassamplelpmas
提出日時 2017-05-02 17:06:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-09-14 04:42:39
合計ジャッジ時間 7,230 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,112 KB
testcase_01 AC 124 ms
41,084 KB
testcase_02 AC 126 ms
41,416 KB
testcase_03 AC 124 ms
41,164 KB
testcase_04 AC 123 ms
41,324 KB
testcase_05 AC 127 ms
41,060 KB
testcase_06 AC 126 ms
41,240 KB
testcase_07 AC 125 ms
40,932 KB
testcase_08 AC 126 ms
40,896 KB
testcase_09 AC 126 ms
41,244 KB
testcase_10 AC 111 ms
39,700 KB
testcase_11 AC 112 ms
40,164 KB
testcase_12 AC 125 ms
40,748 KB
testcase_13 AC 122 ms
40,924 KB
testcase_14 AC 127 ms
40,888 KB
testcase_15 AC 127 ms
40,892 KB
testcase_16 AC 127 ms
40,972 KB
testcase_17 AC 128 ms
40,860 KB
testcase_18 AC 125 ms
41,088 KB
testcase_19 AC 125 ms
40,872 KB
testcase_20 AC 124 ms
40,828 KB
testcase_21 AC 126 ms
40,928 KB
testcase_22 AC 127 ms
41,188 KB
testcase_23 AC 127 ms
41,260 KB
testcase_24 AC 126 ms
40,960 KB
testcase_25 AC 126 ms
40,956 KB
testcase_26 AC 111 ms
40,020 KB
testcase_27 AC 126 ms
41,260 KB
testcase_28 AC 125 ms
40,900 KB
testcase_29 AC 123 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        char[] nums = sc.next().toCharArray();

        int holesCount = 0;

        for (int i = 0; i < nums.length; i++) {

            int num = nums[i];

            if (num == '0' || num == '4' || num == '6' || num == '9') {
                holesCount++;
            }

            if (num == '8') {
                holesCount += 2;
            }

        }

        int min = Math.min(2 * nums.length + holesCount + 1, 2 * (holesCount + 1) + nums.length);

        System.out.println(min);

    }

}
0