結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,136 KB
testcase_01 AC 127 ms
41,300 KB
testcase_02 AC 128 ms
41,172 KB
testcase_03 AC 130 ms
41,160 KB
testcase_04 AC 125 ms
41,008 KB
testcase_05 AC 130 ms
41,128 KB
testcase_06 AC 129 ms
41,388 KB
testcase_07 AC 129 ms
41,136 KB
testcase_08 AC 129 ms
41,024 KB
testcase_09 AC 129 ms
41,060 KB
testcase_10 AC 133 ms
40,988 KB
testcase_11 AC 130 ms
41,124 KB
testcase_12 AC 128 ms
40,932 KB
testcase_13 AC 127 ms
40,976 KB
testcase_14 AC 128 ms
40,948 KB
testcase_15 AC 111 ms
40,204 KB
testcase_16 AC 135 ms
41,100 KB
testcase_17 AC 133 ms
41,096 KB
testcase_18 AC 132 ms
41,168 KB
testcase_19 AC 114 ms
39,792 KB
testcase_20 AC 129 ms
40,976 KB
testcase_21 AC 132 ms
41,372 KB
testcase_22 AC 133 ms
41,100 KB
testcase_23 AC 137 ms
41,056 KB
testcase_24 AC 134 ms
41,164 KB
testcase_25 AC 127 ms
40,860 KB
testcase_26 AC 131 ms
41,020 KB
testcase_27 AC 129 ms
41,052 KB
testcase_28 AC 133 ms
41,220 KB
testcase_29 AC 132 ms
41,052 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