結果

問題 No.2712 Play more!
ユーザー prd_xxxprd_xxx
提出日時 2024-03-31 14:51:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 401 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 77,268 KB
最終ジャッジ日時 2024-09-30 20:02:20
合計ジャッジ時間 5,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 217 ms
74,496 KB
testcase_08 AC 198 ms
76,900 KB
testcase_09 AC 210 ms
74,496 KB
testcase_10 WA -
testcase_11 AC 137 ms
74,624 KB
testcase_12 AC 175 ms
74,780 KB
testcase_13 AC 128 ms
74,368 KB
testcase_14 AC 153 ms
73,856 KB
testcase_15 AC 247 ms
77,184 KB
testcase_16 AC 108 ms
74,880 KB
testcase_17 AC 80 ms
73,592 KB
testcase_18 AC 96 ms
71,936 KB
testcase_19 AC 85 ms
72,192 KB
testcase_20 AC 147 ms
76,752 KB
testcase_21 AC 115 ms
77,204 KB
testcase_22 AC 180 ms
76,544 KB
testcase_23 AC 90 ms
77,056 KB
testcase_24 AC 111 ms
73,472 KB
testcase_25 AC 80 ms
75,068 KB
testcase_26 AC 104 ms
72,192 KB
testcase_27 AC 136 ms
73,088 KB
testcase_28 AC 81 ms
65,664 KB
testcase_29 AC 107 ms
73,600 KB
testcase_30 AC 227 ms
74,624 KB
testcase_31 AC 191 ms
77,268 KB
testcase_32 AC 160 ms
76,912 KB
testcase_33 AC 50 ms
61,440 KB
testcase_34 AC 37 ms
52,352 KB
testcase_35 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
ABC = [tuple(map(int,input().split())) for _ in range(M)]

INF = 10**18
dist = [INF] * N
dist[0] = -A[0]
for i in range(N):
    for a,b,c in ABC:
        a,b = a-1,b-1
        dd = c - A[b]
        if dist[b] > dist[a] + dd:
            dist[b] = dist[a] + dd
            if i==N-1:
                exit(print('inf'))

print(-dist[-1])
0