結果

問題 No.636 硬貨の枚数2
ユーザー htensaihtensai
提出日時 2020-02-13 10:55:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,907 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 42,088 KB
最終ジャッジ日時 2024-10-05 08:37:18
合計ジャッジ時間 11,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,332 KB
testcase_01 AC 112 ms
41,180 KB
testcase_02 AC 103 ms
40,992 KB
testcase_03 AC 89 ms
39,608 KB
testcase_04 AC 112 ms
40,960 KB
testcase_05 AC 104 ms
41,096 KB
testcase_06 AC 93 ms
39,664 KB
testcase_07 AC 95 ms
40,040 KB
testcase_08 WA -
testcase_09 AC 101 ms
40,832 KB
testcase_10 AC 114 ms
41,108 KB
testcase_11 AC 102 ms
41,188 KB
testcase_12 AC 103 ms
40,896 KB
testcase_13 AC 104 ms
40,820 KB
testcase_14 AC 96 ms
39,852 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 104 ms
40,964 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 142 ms
41,688 KB
testcase_45 AC 142 ms
41,728 KB
testcase_46 AC 142 ms
41,692 KB
testcase_47 AC 115 ms
40,696 KB
testcase_48 AC 118 ms
40,940 KB
testcase_49 AC 131 ms
41,848 KB
testcase_50 AC 122 ms
40,748 KB
testcase_51 AC 133 ms
41,928 KB
testcase_52 AC 135 ms
42,088 KB
testcase_53 AC 131 ms
41,868 KB
testcase_54 AC 97 ms
40,300 KB
testcase_55 AC 118 ms
41,164 KB
testcase_56 AC 118 ms
41,412 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 121 ms
41,028 KB
testcase_60 AC 124 ms
40,688 KB
testcase_61 AC 114 ms
40,064 KB
testcase_62 AC 121 ms
40,936 KB
testcase_63 AC 120 ms
41,100 KB
testcase_64 AC 135 ms
41,432 KB
testcase_65 AC 139 ms
41,788 KB
testcase_66 AC 130 ms
41,572 KB
testcase_67 AC 130 ms
41,976 KB
testcase_68 AC 129 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        int length = arr.length + 2;
        int[] inputs = new int[length];
        for (int i = 1; i < length - 1; i++) {
            inputs[i] = arr[i - 1] - '0';
        }
        int[][] dp = new int[length][2];
        dp[0][0] = 0;
        dp[0][1] = Integer.MAX_VALUE / 10;
        for (int i = 1; i < length; i++) {
            int x = inputs[length - i - 1];
            dp[i][0] = Math.min(getCount(x) + dp[i - 1][0], getCount(x + 1) + dp[i - 1][1]);
            dp[i][1] = Math.min(getReturn(x) + dp[i - 1][0], getReturn(x + 1) + dp[i - 1][1]);
        }
        System.out.println(dp[length - 1][0]);
    }
    
    static int getCount(int x) {
        switch (x) {
            case 1:
                return 1;
            case 2:
                return 2;
            case 3:
                return 3;
            case 4:
                return 2;
            case 5:
                return 1;
            case 6:
                return 2;
            case 7:
                return 3;
            case 8:
                return 4;
            case 9:
                return 3;
            case 10:
                return 1;
        }
        return 0;
    }
    
    static int getReturn(int x) {
        switch (x) {
            case 1:
                return 5;
            case 2:
                return 4;
            case 3:
                return 3;
            case 4:
                return 2;
            case 5:
                return 1;
            case 6:
                return 2;
            case 7:
                return 3;
            case 8:
                return 2;
            case 9:
                return 1;
            case 10:
                return 0;
        }
        return 0;
    }
}
0