結果
問題 | No.472 平均順位 |
ユーザー | juris_lazy |
提出日時 | 2022-08-04 14:26:57 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 446 bytes |
コンパイル時間 | 367 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 713,856 KB |
最終ジャッジ日時 | 2024-09-14 10:52:18 |
合計ジャッジ時間 | 8,729 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
57,728 KB |
testcase_01 | AC | 40 ms
51,712 KB |
testcase_02 | AC | 41 ms
51,968 KB |
testcase_03 | AC | 38 ms
51,840 KB |
testcase_04 | AC | 55 ms
64,768 KB |
testcase_05 | AC | 39 ms
52,352 KB |
testcase_06 | AC | 52 ms
62,464 KB |
testcase_07 | AC | 58 ms
66,176 KB |
testcase_08 | AC | 136 ms
82,944 KB |
testcase_09 | AC | 318 ms
104,468 KB |
testcase_10 | AC | 277 ms
95,352 KB |
testcase_11 | AC | 834 ms
174,464 KB |
testcase_12 | AC | 631 ms
142,864 KB |
testcase_13 | TLE | - |
testcase_14 | MLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
N, P = map(int, input().split()) contests = [list(map(int, input().split())) for _ in range(N)] dp = [[float('inf')] * (P + 1) for _ in range(N + 1)] dp[0][0] = 0 for i in range(N): a = contests[i] for j in range(P + 1): for k in range(3, -1, -1): if k < 3: add = a[k] else: add = 1 if j + k <= P: dp[i + 1][j + k] = min(dp[i + 1][j + k], dp[i][j] + add) #print(*dp, sep='\n') print(dp[N][P] / N)