結果

問題 No.509 塗りつぶしツール
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-30 21:23:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,195 bytes
コンパイル時間 3,651 ms
コンパイル使用メモリ 79,468 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-11-22 10:56:23
合計ジャッジ時間 8,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
39,984 KB
testcase_01 AC 126 ms
40,856 KB
testcase_02 AC 111 ms
40,208 KB
testcase_03 AC 130 ms
41,084 KB
testcase_04 AC 123 ms
41,136 KB
testcase_05 AC 122 ms
41,128 KB
testcase_06 AC 125 ms
41,088 KB
testcase_07 AC 114 ms
40,016 KB
testcase_08 AC 119 ms
39,936 KB
testcase_09 AC 122 ms
41,116 KB
testcase_10 AC 125 ms
41,232 KB
testcase_11 AC 125 ms
41,292 KB
testcase_12 AC 124 ms
40,992 KB
testcase_13 AC 124 ms
40,984 KB
testcase_14 AC 126 ms
41,108 KB
testcase_15 AC 115 ms
39,704 KB
testcase_16 AC 125 ms
41,188 KB
testcase_17 AC 125 ms
41,120 KB
testcase_18 AC 125 ms
40,996 KB
testcase_19 AC 123 ms
41,092 KB
testcase_20 AC 124 ms
40,944 KB
testcase_21 AC 121 ms
41,108 KB
testcase_22 AC 125 ms
41,184 KB
testcase_23 AC 123 ms
41,180 KB
testcase_24 AC 112 ms
39,908 KB
testcase_25 AC 124 ms
41,368 KB
testcase_26 AC 123 ms
41,100 KB
testcase_27 AC 108 ms
40,052 KB
testcase_28 AC 112 ms
40,124 KB
testcase_29 AC 114 ms
39,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;

public class No509 {
    char[] nC;
    HashSet<Character> more1 = new HashSet<>();

    public static void main(String[] args) {
        No509 main = new No509();
        main.run();
    }

    private void run() {
        String n = new Scanner(System.in).next();
        nC = n.toCharArray();
        more1.addAll(Arrays.asList('0', '4', '6', '9'));

        int res, res2;
        if((res= p1()) < (res2 = p2())) {
            System.out.println(res);
        } else {
            System.out.println(res2);
        }
    }

    private int p1() {
        int cnt = nC.length + 1;
        for(char each : nC) {
            if( more1.contains(each) ) cnt++;
            if(each == '8') cnt += 2;
        }
        return cnt + nC.length;
    }

    private int p2() {
        int cnt = 1;
        for(char each : nC) {
            if( more1.contains(each) ) cnt++;
            if(each == '8') cnt += 2;
        }
        cnt += nC.length + 1;
        for(char each : nC) {
            if( more1.contains(each) ) cnt++;
            if(each == '8') cnt += 2;
        }
        return cnt;
    }
}
0