結果

問題 No.1639 最小通信路
ユーザー ytftytft
提出日時 2022-03-22 18:18:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 73,024 KB
最終ジャッジ日時 2024-10-10 10:31:22
合計ジャッジ時間 4,095 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,812 KB
testcase_01 AC 39 ms
53,264 KB
testcase_02 AC 51 ms
66,580 KB
testcase_03 AC 61 ms
72,860 KB
testcase_04 AC 60 ms
73,024 KB
testcase_05 AC 47 ms
64,596 KB
testcase_06 AC 47 ms
64,536 KB
testcase_07 AC 36 ms
53,404 KB
testcase_08 AC 53 ms
67,824 KB
testcase_09 AC 38 ms
54,620 KB
testcase_10 AC 42 ms
60,628 KB
testcase_11 AC 49 ms
65,384 KB
testcase_12 AC 44 ms
60,524 KB
testcase_13 AC 51 ms
66,856 KB
testcase_14 AC 35 ms
52,340 KB
testcase_15 AC 42 ms
60,540 KB
testcase_16 AC 51 ms
65,756 KB
testcase_17 AC 49 ms
66,412 KB
testcase_18 AC 38 ms
53,180 KB
testcase_19 AC 47 ms
64,960 KB
testcase_20 AC 49 ms
66,424 KB
testcase_21 AC 36 ms
52,676 KB
testcase_22 AC 43 ms
61,020 KB
testcase_23 AC 50 ms
65,260 KB
testcase_24 AC 44 ms
60,200 KB
testcase_25 AC 42 ms
59,948 KB
testcase_26 AC 38 ms
53,224 KB
testcase_27 AC 37 ms
52,396 KB
testcase_28 AC 36 ms
52,888 KB
testcase_29 AC 50 ms
66,792 KB
testcase_30 AC 52 ms
68,096 KB
testcase_31 AC 41 ms
54,064 KB
testcase_32 AC 57 ms
68,016 KB
testcase_33 AC 39 ms
53,444 KB
testcase_34 AC 53 ms
65,628 KB
testcase_35 AC 58 ms
70,432 KB
testcase_36 AC 51 ms
65,852 KB
testcase_37 AC 52 ms
68,540 KB
testcase_38 AC 37 ms
53,064 KB
testcase_39 AC 43 ms
59,772 KB
testcase_40 AC 39 ms
54,608 KB
testcase_41 AC 38 ms
53,332 KB
testcase_42 AC 54 ms
67,096 KB
testcase_43 AC 39 ms
54,216 KB
testcase_44 AC 38 ms
52,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
def find(par,i):
    if par[i]==-1:
        return i
    root=find(par,par[i])
    par[i]=root
    return root
def unite(par,i,j):
    par[find(par,i)]=find(par,j)
N=int(input())
par=[-1 for i in range(N)]
ans=0
for i in range(N*(N-1)//2):
    a,b,C=map(int,input().split())
    if find(par,a-1)!=find(par,b-1):
        unite(par,a-1,b-1)
        ans=max(ans,C)
print(ans)
0