結果

問題 No.1344 Typical Shortest Path Sum
ユーザー roarisroaris
提出日時 2021-01-24 05:46:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 73,320 KB
最終ジャッジ日時 2024-06-10 16:41:28
合計ジャッジ時間 5,608 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,556 KB
testcase_01 AC 36 ms
52,768 KB
testcase_02 AC 35 ms
53,652 KB
testcase_03 AC 45 ms
60,832 KB
testcase_04 AC 41 ms
59,864 KB
testcase_05 AC 36 ms
53,496 KB
testcase_06 AC 36 ms
52,500 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
52,388 KB
testcase_10 AC 36 ms
53,280 KB
testcase_11 AC 36 ms
53,276 KB
testcase_12 WA -
testcase_13 AC 37 ms
53,092 KB
testcase_14 AC 36 ms
53,032 KB
testcase_15 AC 37 ms
52,440 KB
testcase_16 AC 45 ms
61,936 KB
testcase_17 AC 36 ms
52,876 KB
testcase_18 AC 37 ms
54,152 KB
testcase_19 AC 37 ms
52,244 KB
testcase_20 AC 38 ms
52,276 KB
testcase_21 AC 36 ms
52,648 KB
testcase_22 AC 37 ms
52,264 KB
testcase_23 AC 37 ms
53,152 KB
testcase_24 AC 36 ms
53,376 KB
testcase_25 AC 36 ms
53,820 KB
testcase_26 AC 36 ms
52,140 KB
testcase_27 AC 37 ms
52,816 KB
testcase_28 AC 37 ms
52,276 KB
testcase_29 AC 37 ms
52,372 KB
testcase_30 AC 35 ms
52,316 KB
testcase_31 AC 36 ms
53,100 KB
testcase_32 AC 37 ms
52,812 KB
testcase_33 AC 36 ms
52,436 KB
testcase_34 AC 35 ms
52,428 KB
testcase_35 AC 36 ms
53,164 KB
testcase_36 AC 35 ms
52,352 KB
testcase_37 AC 36 ms
52,464 KB
testcase_38 AC 36 ms
52,564 KB
testcase_39 AC 40 ms
53,740 KB
testcase_40 AC 51 ms
63,528 KB
testcase_41 AC 53 ms
64,940 KB
testcase_42 AC 52 ms
63,076 KB
testcase_43 AC 52 ms
63,380 KB
testcase_44 AC 50 ms
63,872 KB
testcase_45 AC 53 ms
64,132 KB
testcase_46 AC 52 ms
63,640 KB
testcase_47 AC 50 ms
63,404 KB
testcase_48 AC 51 ms
63,832 KB
testcase_49 AC 49 ms
63,552 KB
testcase_50 AC 50 ms
63,836 KB
testcase_51 AC 50 ms
64,692 KB
testcase_52 AC 49 ms
64,164 KB
testcase_53 AC 54 ms
63,680 KB
testcase_54 AC 51 ms
62,524 KB
testcase_55 AC 53 ms
63,636 KB
testcase_56 AC 52 ms
64,404 KB
testcase_57 AC 51 ms
64,608 KB
testcase_58 AC 53 ms
64,772 KB
testcase_59 AC 53 ms
63,760 KB
testcase_60 AC 44 ms
60,852 KB
testcase_61 AC 34 ms
52,808 KB
testcase_62 AC 66 ms
72,596 KB
testcase_63 AC 49 ms
62,940 KB
testcase_64 AC 50 ms
62,864 KB
testcase_65 AC 69 ms
73,320 KB
testcase_66 AC 67 ms
72,804 KB
testcase_67 AC 66 ms
72,776 KB
testcase_68 AC 46 ms
61,772 KB
testcase_69 AC 47 ms
61,772 KB
testcase_70 AC 44 ms
59,736 KB
testcase_71 AC 35 ms
52,900 KB
testcase_72 AC 40 ms
53,940 KB
testcase_73 AC 35 ms
52,072 KB
testcase_74 AC 35 ms
53,236 KB
testcase_75 AC 35 ms
52,184 KB
testcase_76 AC 37 ms
52,428 KB
testcase_77 AC 36 ms
53,248 KB
testcase_78 AC 36 ms
52,932 KB
testcase_79 AC 45 ms
60,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def warshall_floyd():
    for k in range(N):
        for i in range(N):
            for j in range(N):
                if D[i][k]!=10**18 and D[k][j]!=10**18:
                    D[i][j] = min(D[i][j], D[i][k]+D[k][j])

N, M = map(int, input().split())
D = [[10**18]*N for _ in range(N)]

for i in range(N):
    D[i][i] = 0
    
for _ in range(M):
    s, t, d = map(int, input().split())
    D[s-1][t-1] = d

warshall_floyd()

for i in range(N):
    ans = 0
    
    for j in range(N):
        if D[i][j]!=10**18:
            ans += D[i][j]
    
    print(ans)
0