結果

問題 No.472 平均順位
ユーザー tentententen
提出日時 2020-09-11 16:00:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 683 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 2,601 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 52,312 KB
最終ジャッジ日時 2024-06-07 18:30:00
合計ジャッジ時間 10,200 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,380 KB
testcase_01 AC 136 ms
41,300 KB
testcase_02 AC 135 ms
41,148 KB
testcase_03 AC 138 ms
41,300 KB
testcase_04 AC 175 ms
41,812 KB
testcase_05 AC 145 ms
41,536 KB
testcase_06 AC 149 ms
41,488 KB
testcase_07 AC 171 ms
41,676 KB
testcase_08 AC 221 ms
42,796 KB
testcase_09 AC 264 ms
45,396 KB
testcase_10 AC 268 ms
45,508 KB
testcase_11 AC 403 ms
51,260 KB
testcase_12 AC 344 ms
49,248 KB
testcase_13 AC 521 ms
52,176 KB
testcase_14 AC 664 ms
52,232 KB
testcase_15 AC 516 ms
52,084 KB
testcase_16 AC 638 ms
52,224 KB
testcase_17 AC 683 ms
52,312 KB
testcase_18 AC 296 ms
46,400 KB
testcase_19 AC 475 ms
52,232 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