結果

問題 No.1676 Coin Trade (Single)
ユーザー kohei2019kohei2019
提出日時 2023-06-09 11:27:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 95,012 KB
最終ジャッジ日時 2024-12-31 20:30:50
合計ジャッジ時間 7,698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,460 KB
testcase_01 AC 38 ms
52,320 KB
testcase_02 AC 39 ms
52,492 KB
testcase_03 AC 274 ms
89,248 KB
testcase_04 AC 246 ms
87,036 KB
testcase_05 AC 243 ms
89,624 KB
testcase_06 AC 250 ms
89,832 KB
testcase_07 AC 214 ms
87,088 KB
testcase_08 AC 165 ms
82,792 KB
testcase_09 AC 200 ms
83,536 KB
testcase_10 AC 219 ms
86,236 KB
testcase_11 AC 277 ms
88,748 KB
testcase_12 AC 190 ms
85,104 KB
testcase_13 AC 39 ms
53,456 KB
testcase_14 AC 39 ms
52,804 KB
testcase_15 AC 38 ms
52,272 KB
testcase_16 AC 39 ms
52,736 KB
testcase_17 AC 39 ms
52,680 KB
testcase_18 AC 37 ms
52,616 KB
testcase_19 AC 38 ms
52,680 KB
testcase_20 AC 39 ms
52,948 KB
testcase_21 AC 38 ms
52,572 KB
testcase_22 AC 39 ms
54,092 KB
testcase_23 AC 38 ms
53,268 KB
testcase_24 AC 37 ms
52,736 KB
testcase_25 AC 39 ms
52,704 KB
testcase_26 AC 41 ms
53,632 KB
testcase_27 AC 39 ms
52,516 KB
testcase_28 AC 37 ms
53,272 KB
testcase_29 AC 39 ms
52,460 KB
testcase_30 AC 37 ms
52,680 KB
testcase_31 AC 38 ms
53,344 KB
testcase_32 AC 40 ms
53,828 KB
testcase_33 AC 334 ms
93,340 KB
testcase_34 AC 347 ms
94,480 KB
testcase_35 AC 339 ms
95,012 KB
testcase_36 AC 335 ms
94,344 KB
testcase_37 AC 336 ms
92,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
lsA = []
lsg = [[] for i in range(N)]
for i in range(N):
    A,M = map(int,input().split())
    ls = list(map(int,input().split()))
    lsA.append(A)
    for j in range(len(ls)):
        lsg[ls[j]-1].append((i,lsA[i]-lsA[ls[j]-1]))
for i in range(N-1):
    lsg[i].append((i+1,0))

cost = [0]*(N)
for i in range(N):
    c = cost[i]
    for g,v in lsg[i]:
        cost[g] = max(cost[g],c+v)

print(max(cost))
0