結果

問題 No.1676 Coin Trade (Single)
ユーザー 👑 rin204rin204
提出日時 2021-09-18 11:08:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 79,292 KB
最終ジャッジ日時 2024-06-30 08:19:23
合計ジャッジ時間 5,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,212 KB
testcase_01 AC 37 ms
51,872 KB
testcase_02 AC 39 ms
52,940 KB
testcase_03 AC 178 ms
78,236 KB
testcase_04 AC 167 ms
78,256 KB
testcase_05 AC 157 ms
77,936 KB
testcase_06 AC 158 ms
78,108 KB
testcase_07 AC 141 ms
78,264 KB
testcase_08 AC 120 ms
77,848 KB
testcase_09 AC 139 ms
78,028 KB
testcase_10 AC 145 ms
78,032 KB
testcase_11 AC 180 ms
78,684 KB
testcase_12 AC 130 ms
77,592 KB
testcase_13 AC 38 ms
52,928 KB
testcase_14 AC 38 ms
53,316 KB
testcase_15 AC 38 ms
53,072 KB
testcase_16 AC 39 ms
52,692 KB
testcase_17 AC 38 ms
53,496 KB
testcase_18 AC 37 ms
53,504 KB
testcase_19 AC 38 ms
53,636 KB
testcase_20 AC 37 ms
52,804 KB
testcase_21 AC 37 ms
53,364 KB
testcase_22 AC 37 ms
52,484 KB
testcase_23 AC 38 ms
52,576 KB
testcase_24 AC 37 ms
52,112 KB
testcase_25 AC 38 ms
52,560 KB
testcase_26 AC 37 ms
53,432 KB
testcase_27 AC 37 ms
52,332 KB
testcase_28 AC 38 ms
53,744 KB
testcase_29 AC 37 ms
52,348 KB
testcase_30 AC 37 ms
53,112 KB
testcase_31 AC 36 ms
52,616 KB
testcase_32 AC 37 ms
53,544 KB
testcase_33 AC 208 ms
78,832 KB
testcase_34 AC 205 ms
78,772 KB
testcase_35 AC 208 ms
78,956 KB
testcase_36 AC 212 ms
78,940 KB
testcase_37 AC 207 ms
79,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
inf = 10 ** 20
dp = [0] * (n + 1)
alst = [0] * (n + 1)
for i in range(1, n + 1):
    a, m = map(int, input().split())
    alst[i] = a
    blst = list(map(int, input().split()))
    dp[i] = dp[i - 1]
    for b in blst:
        dp[i] = max(dp[i], dp[b] + a - alst[b])

print(dp[-1])
0