結果

問題 No.1676 Coin Trade (Single)
ユーザー kohei2019kohei2019
提出日時 2023-06-09 11:27:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 94,492 KB
最終ジャッジ日時 2024-06-10 07:33:40
合計ジャッジ時間 6,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,140 KB
testcase_01 AC 32 ms
52,420 KB
testcase_02 AC 33 ms
53,020 KB
testcase_03 AC 210 ms
89,248 KB
testcase_04 AC 195 ms
87,524 KB
testcase_05 AC 188 ms
89,500 KB
testcase_06 AC 196 ms
89,648 KB
testcase_07 AC 180 ms
87,284 KB
testcase_08 AC 132 ms
82,788 KB
testcase_09 AC 167 ms
83,872 KB
testcase_10 AC 175 ms
86,416 KB
testcase_11 AC 212 ms
89,008 KB
testcase_12 AC 183 ms
85,196 KB
testcase_13 AC 34 ms
52,868 KB
testcase_14 AC 35 ms
52,272 KB
testcase_15 AC 32 ms
53,712 KB
testcase_16 AC 32 ms
53,140 KB
testcase_17 AC 31 ms
53,360 KB
testcase_18 AC 32 ms
52,580 KB
testcase_19 AC 33 ms
52,068 KB
testcase_20 AC 32 ms
52,612 KB
testcase_21 AC 31 ms
53,344 KB
testcase_22 AC 33 ms
53,728 KB
testcase_23 AC 31 ms
52,416 KB
testcase_24 AC 31 ms
53,196 KB
testcase_25 AC 32 ms
52,792 KB
testcase_26 AC 32 ms
53,200 KB
testcase_27 AC 32 ms
52,628 KB
testcase_28 AC 32 ms
52,960 KB
testcase_29 AC 32 ms
52,828 KB
testcase_30 AC 31 ms
52,560 KB
testcase_31 AC 32 ms
52,396 KB
testcase_32 AC 33 ms
52,984 KB
testcase_33 AC 284 ms
93,460 KB
testcase_34 AC 272 ms
94,352 KB
testcase_35 AC 266 ms
94,492 KB
testcase_36 AC 260 ms
94,104 KB
testcase_37 AC 265 ms
92,696 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