結果

問題 No.1676 Coin Trade (Single)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-12-09 22:40:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 82,060 KB
最終ジャッジ日時 2024-07-17 15:33:14
合計ジャッジ時間 6,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,632 KB
testcase_01 AC 38 ms
52,124 KB
testcase_02 AC 42 ms
53,492 KB
testcase_03 AC 179 ms
80,280 KB
testcase_04 AC 165 ms
79,188 KB
testcase_05 AC 158 ms
78,724 KB
testcase_06 AC 160 ms
79,276 KB
testcase_07 AC 147 ms
78,324 KB
testcase_08 AC 132 ms
77,788 KB
testcase_09 AC 144 ms
78,380 KB
testcase_10 AC 150 ms
78,580 KB
testcase_11 AC 179 ms
80,292 KB
testcase_12 AC 134 ms
77,912 KB
testcase_13 AC 37 ms
52,724 KB
testcase_14 AC 38 ms
51,936 KB
testcase_15 AC 38 ms
52,124 KB
testcase_16 AC 38 ms
52,076 KB
testcase_17 AC 39 ms
53,620 KB
testcase_18 AC 38 ms
52,116 KB
testcase_19 AC 42 ms
52,676 KB
testcase_20 AC 40 ms
52,240 KB
testcase_21 AC 38 ms
53,408 KB
testcase_22 AC 38 ms
53,096 KB
testcase_23 AC 38 ms
52,344 KB
testcase_24 AC 37 ms
52,760 KB
testcase_25 AC 38 ms
53,100 KB
testcase_26 AC 38 ms
52,616 KB
testcase_27 AC 38 ms
53,532 KB
testcase_28 AC 38 ms
52,532 KB
testcase_29 AC 39 ms
52,880 KB
testcase_30 AC 38 ms
52,748 KB
testcase_31 AC 37 ms
52,424 KB
testcase_32 AC 38 ms
52,196 KB
testcase_33 AC 205 ms
81,696 KB
testcase_34 AC 207 ms
81,688 KB
testcase_35 AC 202 ms
82,012 KB
testcase_36 AC 205 ms
82,060 KB
testcase_37 AC 210 ms
81,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
ans = 0
dp = [0]
for i in range(n):
    a,m = map(int,input().split())
    dp.append(ans-a)
    B = list(map(int,input().split()))
    for b in B:
        dp[-1] = max(dp[-1],dp[b])
    ans = max(ans,dp[-1]+a)
print(ans)
0