結果

問題 No.472 平均順位
ユーザー tentententen
提出日時 2020-09-11 16:00:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 2,823 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 52,024 KB
最終ジャッジ日時 2024-12-26 02:45:21
合計ジャッジ時間 8,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,304 KB
testcase_01 AC 122 ms
41,488 KB
testcase_02 AC 129 ms
41,256 KB
testcase_03 AC 137 ms
41,300 KB
testcase_04 AC 157 ms
41,448 KB
testcase_05 AC 136 ms
41,020 KB
testcase_06 AC 149 ms
41,676 KB
testcase_07 AC 165 ms
41,940 KB
testcase_08 AC 207 ms
42,752 KB
testcase_09 AC 227 ms
45,524 KB
testcase_10 AC 246 ms
45,388 KB
testcase_11 AC 358 ms
51,128 KB
testcase_12 AC 256 ms
50,496 KB
testcase_13 AC 515 ms
51,848 KB
testcase_14 AC 589 ms
51,916 KB
testcase_15 AC 489 ms
52,016 KB
testcase_16 AC 498 ms
52,020 KB
testcase_17 AC 570 ms
52,024 KB
testcase_18 AC 229 ms
47,184 KB
testcase_19 AC 418 ms
51,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int p = sc.nextInt();
    	int[] dp = new int[p + 5];
    	Arrays.fill(dp, Integer.MAX_VALUE / 2);
    	dp[3] = 0;
    	for (int i = 1; i <= n; i++) {
    	    int zero = sc.nextInt();
    	    int one = sc.nextInt();
    	    int two = sc.nextInt();
    	    for (int j = Math.min(p, i * 3) + 3; j >= 3; j--) {
    	        dp[j] = Math.min(Math.min(dp[j] + zero, dp[j - 1] + one), Math.min(dp[j - 2] + two, dp[j - 3] + 1));
    	    }
    	}
    	System.out.println(dp[p + 3] / (double)n);
	}
}
0