結果

問題 No.2712 Play more!
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-04-05 14:35:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 78,164 KB
最終ジャッジ日時 2024-10-01 01:07:26
合計ジャッジ時間 6,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,740 KB
testcase_01 AC 37 ms
53,136 KB
testcase_02 AC 36 ms
52,852 KB
testcase_03 AC 36 ms
53,180 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,500 KB
testcase_06 AC 36 ms
52,492 KB
testcase_07 AC 320 ms
78,164 KB
testcase_08 AC 314 ms
77,888 KB
testcase_09 AC 294 ms
77,684 KB
testcase_10 WA -
testcase_11 AC 164 ms
76,576 KB
testcase_12 AC 249 ms
76,808 KB
testcase_13 AC 147 ms
76,832 KB
testcase_14 AC 188 ms
76,916 KB
testcase_15 AC 446 ms
77,096 KB
testcase_16 AC 110 ms
76,880 KB
testcase_17 AC 75 ms
73,384 KB
testcase_18 AC 109 ms
76,632 KB
testcase_19 AC 93 ms
76,512 KB
testcase_20 AC 184 ms
76,920 KB
testcase_21 AC 126 ms
77,076 KB
testcase_22 AC 282 ms
77,272 KB
testcase_23 AC 88 ms
76,972 KB
testcase_24 AC 127 ms
76,624 KB
testcase_25 AC 76 ms
73,712 KB
testcase_26 AC 110 ms
76,736 KB
testcase_27 AC 214 ms
76,740 KB
testcase_28 AC 104 ms
75,940 KB
testcase_29 AC 125 ms
76,616 KB
testcase_30 AC 300 ms
77,348 KB
testcase_31 AC 529 ms
75,392 KB
testcase_32 AC 304 ms
73,748 KB
testcase_33 AC 45 ms
59,976 KB
testcase_34 AC 36 ms
53,012 KB
testcase_35 AC 37 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
e=[]
for i in range(m):
  x,y,z=map(int,input().split())
  e+=[(x-1,y-1,z-a[x-1])]
X=10**20
v=[X]*n
v[0]=0
for i in range(n):
  f=0
  for x,y,z in e:
    if v[y]>v[x]+z:
      v[y]=v[x]+z
      f=1
print("inf" if f else -v[n-1]+a[n-1])
0