結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 1,046 ms
88,704 KB
testcase_08 AC 1,098 ms
89,108 KB
testcase_09 AC 1,095 ms
88,544 KB
testcase_10 WA -
testcase_11 AC 285 ms
77,184 KB
testcase_12 AC 1,000 ms
78,256 KB
testcase_13 AC 251 ms
76,988 KB
testcase_14 AC 727 ms
78,076 KB
testcase_15 AC 1,156 ms
79,048 KB
testcase_16 AC 152 ms
76,848 KB
testcase_17 AC 94 ms
76,568 KB
testcase_18 AC 202 ms
76,904 KB
testcase_19 AC 118 ms
76,800 KB
testcase_20 AC 325 ms
77,612 KB
testcase_21 AC 171 ms
76,804 KB
testcase_22 AC 989 ms
78,320 KB
testcase_23 AC 98 ms
76,924 KB
testcase_24 AC 198 ms
76,800 KB
testcase_25 AC 86 ms
74,624 KB
testcase_26 AC 202 ms
77,028 KB
testcase_27 AC 962 ms
77,356 KB
testcase_28 AC 175 ms
76,800 KB
testcase_29 AC 181 ms
76,780 KB
testcase_30 AC 979 ms
78,208 KB
testcase_31 AC 84 ms
77,796 KB
testcase_32 AC 94 ms
77,824 KB
testcase_33 AC 47 ms
59,776 KB
testcase_34 AC 35 ms
52,224 KB
testcase_35 AC 34 ms
51,968 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