結果

問題 No.2712 Play more!
ユーザー nikoro256nikoro256
提出日時 2024-03-31 15:14:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 88,728 KB
最終ジャッジ日時 2024-09-30 20:27:00
合計ジャッジ時間 13,839 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,572 KB
testcase_01 AC 38 ms
53,216 KB
testcase_02 AC 36 ms
52,144 KB
testcase_03 AC 37 ms
52,272 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,348 KB
testcase_06 AC 37 ms
53,084 KB
testcase_07 AC 1,163 ms
88,220 KB
testcase_08 AC 1,082 ms
88,728 KB
testcase_09 AC 1,096 ms
88,240 KB
testcase_10 WA -
testcase_11 AC 315 ms
76,908 KB
testcase_12 AC 1,047 ms
78,236 KB
testcase_13 AC 238 ms
77,008 KB
testcase_14 AC 702 ms
77,892 KB
testcase_15 AC 1,072 ms
79,460 KB
testcase_16 AC 150 ms
76,780 KB
testcase_17 AC 92 ms
76,528 KB
testcase_18 AC 198 ms
76,700 KB
testcase_19 AC 120 ms
76,544 KB
testcase_20 AC 317 ms
77,144 KB
testcase_21 AC 170 ms
77,120 KB
testcase_22 AC 1,083 ms
78,412 KB
testcase_23 AC 97 ms
76,920 KB
testcase_24 AC 198 ms
77,156 KB
testcase_25 AC 81 ms
74,612 KB
testcase_26 AC 213 ms
76,788 KB
testcase_27 AC 1,031 ms
77,692 KB
testcase_28 AC 179 ms
76,988 KB
testcase_29 AC 191 ms
76,816 KB
testcase_30 AC 1,067 ms
78,204 KB
testcase_31 AC 82 ms
77,836 KB
testcase_32 AC 95 ms
77,372 KB
testcase_33 AC 47 ms
60,572 KB
testcase_34 AC 38 ms
52,672 KB
testcase_35 AC 38 ms
53,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
edges=[]
for i in range(N):
    edges.append([i,N+i,-A[i]])
for _ in range(M):
    a,b,c=map(int,input().split())
    edges.append([N+a-1,b-1,c])
ans=[10**40 for _ in range(2*N)]
ans[0]=0
for i in range(2*N+2):
    update=False
    for a,b,c in edges:
        if ans[b]>ans[a]+c:
            ans[b]=ans[a]+c
            update=True
    #print(ans)
    if not update:
        break

    if i==2*N+1:
        print('inf')
        exit(0)
print(-ans[-1])
0