結果

問題 No.1344 Typical Shortest Path Sum
ユーザー roarisroaris
提出日時 2021-01-24 05:46:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 73,836 KB
最終ジャッジ日時 2025-01-02 09:35:19
合計ジャッジ時間 5,585 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,444 KB
testcase_01 AC 35 ms
53,296 KB
testcase_02 AC 35 ms
53,212 KB
testcase_03 AC 46 ms
60,416 KB
testcase_04 AC 42 ms
61,048 KB
testcase_05 AC 36 ms
53,568 KB
testcase_06 AC 35 ms
52,464 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
52,736 KB
testcase_10 AC 36 ms
52,332 KB
testcase_11 AC 35 ms
52,344 KB
testcase_12 WA -
testcase_13 AC 34 ms
52,328 KB
testcase_14 AC 35 ms
52,608 KB
testcase_15 AC 33 ms
52,408 KB
testcase_16 AC 45 ms
62,240 KB
testcase_17 AC 34 ms
53,052 KB
testcase_18 AC 34 ms
52,588 KB
testcase_19 AC 35 ms
53,724 KB
testcase_20 AC 35 ms
52,728 KB
testcase_21 AC 37 ms
53,224 KB
testcase_22 AC 34 ms
52,636 KB
testcase_23 AC 36 ms
52,548 KB
testcase_24 AC 34 ms
52,272 KB
testcase_25 AC 37 ms
53,288 KB
testcase_26 AC 34 ms
53,200 KB
testcase_27 AC 35 ms
52,684 KB
testcase_28 AC 36 ms
53,708 KB
testcase_29 AC 35 ms
52,632 KB
testcase_30 AC 35 ms
52,780 KB
testcase_31 AC 35 ms
52,704 KB
testcase_32 AC 34 ms
53,208 KB
testcase_33 AC 34 ms
52,416 KB
testcase_34 AC 35 ms
52,340 KB
testcase_35 AC 37 ms
52,520 KB
testcase_36 AC 33 ms
53,212 KB
testcase_37 AC 35 ms
53,552 KB
testcase_38 AC 37 ms
52,680 KB
testcase_39 AC 35 ms
52,420 KB
testcase_40 AC 52 ms
64,236 KB
testcase_41 AC 54 ms
64,704 KB
testcase_42 AC 51 ms
64,076 KB
testcase_43 AC 49 ms
64,628 KB
testcase_44 AC 49 ms
63,560 KB
testcase_45 AC 49 ms
64,012 KB
testcase_46 AC 52 ms
63,920 KB
testcase_47 AC 50 ms
63,660 KB
testcase_48 AC 52 ms
64,400 KB
testcase_49 AC 49 ms
63,032 KB
testcase_50 AC 50 ms
63,788 KB
testcase_51 AC 49 ms
63,752 KB
testcase_52 AC 52 ms
63,652 KB
testcase_53 AC 55 ms
63,824 KB
testcase_54 AC 49 ms
63,092 KB
testcase_55 AC 52 ms
64,828 KB
testcase_56 AC 53 ms
65,028 KB
testcase_57 AC 50 ms
64,936 KB
testcase_58 AC 53 ms
63,824 KB
testcase_59 AC 53 ms
64,264 KB
testcase_60 AC 46 ms
61,412 KB
testcase_61 AC 36 ms
52,412 KB
testcase_62 AC 69 ms
73,836 KB
testcase_63 AC 47 ms
63,072 KB
testcase_64 AC 50 ms
64,112 KB
testcase_65 AC 71 ms
72,324 KB
testcase_66 AC 72 ms
72,520 KB
testcase_67 AC 70 ms
72,268 KB
testcase_68 AC 50 ms
62,436 KB
testcase_69 AC 50 ms
62,576 KB
testcase_70 AC 44 ms
60,468 KB
testcase_71 AC 35 ms
53,448 KB
testcase_72 AC 37 ms
53,136 KB
testcase_73 AC 35 ms
52,496 KB
testcase_74 AC 36 ms
53,264 KB
testcase_75 AC 35 ms
52,852 KB
testcase_76 AC 35 ms
54,060 KB
testcase_77 AC 33 ms
52,452 KB
testcase_78 AC 35 ms
53,164 KB
testcase_79 AC 45 ms
61,452 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