結果

問題 No.2712 Play more!
ユーザー prd_xxxprd_xxx
提出日時 2024-03-31 14:47:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-30 19:58:28
合計ジャッジ時間 5,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,004 KB
testcase_01 AC 36 ms
52,668 KB
testcase_02 AC 37 ms
52,744 KB
testcase_03 AC 36 ms
52,744 KB
testcase_04 AC 34 ms
52,608 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 196 ms
74,448 KB
testcase_10 AC 37 ms
53,436 KB
testcase_11 AC 133 ms
74,348 KB
testcase_12 AC 155 ms
76,784 KB
testcase_13 AC 119 ms
74,412 KB
testcase_14 WA -
testcase_15 AC 237 ms
76,956 KB
testcase_16 AC 107 ms
76,608 KB
testcase_17 AC 74 ms
73,600 KB
testcase_18 AC 87 ms
73,172 KB
testcase_19 AC 76 ms
73,072 KB
testcase_20 AC 137 ms
76,712 KB
testcase_21 AC 107 ms
76,908 KB
testcase_22 AC 165 ms
76,888 KB
testcase_23 AC 88 ms
76,532 KB
testcase_24 AC 106 ms
74,772 KB
testcase_25 AC 79 ms
76,244 KB
testcase_26 AC 92 ms
72,320 KB
testcase_27 WA -
testcase_28 AC 76 ms
66,348 KB
testcase_29 AC 97 ms
74,408 KB
testcase_30 AC 212 ms
76,920 KB
testcase_31 AC 176 ms
77,312 KB
testcase_32 AC 151 ms
77,016 KB
testcase_33 AC 47 ms
61,544 KB
testcase_34 AC 35 ms
52,080 KB
testcase_35 AC 33 ms
52,708 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 and b == N-1:
                exit(print('inf'))

print(-dist[-1])
0