結果

問題 No.636 硬貨の枚数2
ユーザー 37zigen37zigen
提出日時 2018-01-21 14:27:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 930 bytes
コンパイル時間 2,425 ms
コンパイル使用メモリ 78,116 KB
実行使用メモリ 42,052 KB
最終ジャッジ日時 2024-06-07 15:08:55
合計ジャッジ時間 12,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,208 KB
testcase_01 AC 119 ms
41,076 KB
testcase_02 AC 110 ms
40,928 KB
testcase_03 AC 116 ms
41,280 KB
testcase_04 AC 114 ms
41,388 KB
testcase_05 AC 104 ms
40,056 KB
testcase_06 AC 116 ms
41,068 KB
testcase_07 AC 101 ms
39,932 KB
testcase_08 AC 114 ms
41,232 KB
testcase_09 AC 117 ms
41,320 KB
testcase_10 AC 109 ms
41,488 KB
testcase_11 AC 112 ms
41,280 KB
testcase_12 AC 115 ms
40,796 KB
testcase_13 AC 117 ms
41,192 KB
testcase_14 AC 103 ms
40,056 KB
testcase_15 AC 113 ms
41,300 KB
testcase_16 AC 116 ms
40,932 KB
testcase_17 AC 114 ms
41,128 KB
testcase_18 AC 109 ms
40,924 KB
testcase_19 AC 105 ms
39,936 KB
testcase_20 AC 115 ms
40,868 KB
testcase_21 AC 113 ms
40,752 KB
testcase_22 AC 118 ms
40,912 KB
testcase_23 AC 116 ms
41,152 KB
testcase_24 AC 130 ms
40,672 KB
testcase_25 AC 150 ms
41,412 KB
testcase_26 AC 106 ms
39,604 KB
testcase_27 AC 128 ms
40,932 KB
testcase_28 AC 124 ms
41,160 KB
testcase_29 AC 155 ms
42,052 KB
testcase_30 AC 124 ms
41,312 KB
testcase_31 AC 126 ms
40,804 KB
testcase_32 AC 120 ms
41,316 KB
testcase_33 AC 121 ms
40,888 KB
testcase_34 AC 148 ms
41,788 KB
testcase_35 AC 148 ms
41,532 KB
testcase_36 AC 151 ms
41,236 KB
testcase_37 AC 154 ms
41,424 KB
testcase_38 AC 155 ms
41,884 KB
testcase_39 AC 155 ms
41,516 KB
testcase_40 AC 152 ms
41,808 KB
testcase_41 AC 161 ms
41,920 KB
testcase_42 AC 134 ms
40,960 KB
testcase_43 AC 135 ms
40,808 KB
testcase_44 AC 149 ms
41,752 KB
testcase_45 AC 154 ms
41,836 KB
testcase_46 AC 155 ms
41,760 KB
testcase_47 AC 150 ms
41,760 KB
testcase_48 AC 154 ms
41,792 KB
testcase_49 AC 155 ms
41,520 KB
testcase_50 AC 154 ms
41,692 KB
testcase_51 AC 136 ms
41,248 KB
testcase_52 AC 153 ms
41,684 KB
testcase_53 AC 154 ms
41,700 KB
testcase_54 AC 112 ms
40,960 KB
testcase_55 AC 105 ms
40,108 KB
testcase_56 AC 112 ms
40,928 KB
testcase_57 AC 115 ms
41,188 KB
testcase_58 AC 114 ms
40,932 KB
testcase_59 AC 115 ms
40,932 KB
testcase_60 AC 117 ms
40,928 KB
testcase_61 AC 115 ms
41,084 KB
testcase_62 AC 116 ms
41,244 KB
testcase_63 AC 113 ms
40,740 KB
testcase_64 AC 162 ms
41,644 KB
testcase_65 AC 132 ms
41,004 KB
testcase_66 AC 132 ms
40,808 KB
testcase_67 AC 148 ms
41,796 KB
testcase_68 AC 155 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	int[] p = { 0, 1, 2, 3, 4, 1, 2, 3, 4, 5 };

	public void run() {
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		int n = str.length();
		int[][] a = new int[n + 2][2];
		for (int i = 0; i < a.length; ++i)
			for (int j = 0; j < a[i].length; ++j)
				a[i][j] = Integer.MAX_VALUE / 3;
		a[0][0] = 0;
		for (int i = 0; i <= n; ++i) {
			int v = i == n ? 0 : str.charAt(n - 1 - i) - '0';
			for (int j = 0; j <= 9; ++j) {
				for (int k = 0; k <= 1; ++k) {
					a[i + 1][(v + j + k) / 10] = Math.min(a[i + 1][(v + j + k) / 10],
							a[i][k] + p[(v + j + k) % 10] + p[j]);
				}
			}
		}
		System.out.println(a[n + 1][0]);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	public static void main(String[] args) throws FileNotFoundException {
		new Main().run();
	}
}
0