結果

問題 No.1639 最小通信路
ユーザー ntudantuda
提出日時 2021-08-18 22:09:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 296 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 76,916 KB
最終ジャッジ日時 2024-10-11 22:05:59
合計ジャッジ時間 4,696 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 79 ms
74,112 KB
testcase_03 AC 91 ms
76,916 KB
testcase_04 AC 88 ms
76,912 KB
testcase_05 AC 72 ms
68,736 KB
testcase_06 AC 70 ms
70,912 KB
testcase_07 WA -
testcase_08 AC 76 ms
73,088 KB
testcase_09 AC 41 ms
52,864 KB
testcase_10 WA -
testcase_11 AC 70 ms
71,260 KB
testcase_12 AC 56 ms
62,720 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,352 KB
testcase_15 AC 53 ms
61,568 KB
testcase_16 AC 70 ms
71,704 KB
testcase_17 AC 71 ms
72,832 KB
testcase_18 AC 41 ms
52,480 KB
testcase_19 AC 69 ms
69,376 KB
testcase_20 AC 71 ms
72,576 KB
testcase_21 AC 38 ms
51,328 KB
testcase_22 AC 58 ms
63,872 KB
testcase_23 AC 69 ms
69,888 KB
testcase_24 AC 57 ms
62,464 KB
testcase_25 AC 45 ms
54,528 KB
testcase_26 AC 41 ms
52,736 KB
testcase_27 WA -
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 75 ms
72,192 KB
testcase_30 AC 79 ms
75,136 KB
testcase_31 WA -
testcase_32 AC 76 ms
72,704 KB
testcase_33 AC 42 ms
53,376 KB
testcase_34 AC 76 ms
72,320 KB
testcase_35 AC 87 ms
76,904 KB
testcase_36 AC 76 ms
72,320 KB
testcase_37 AC 77 ms
73,984 KB
testcase_38 AC 39 ms
52,736 KB
testcase_39 AC 48 ms
54,528 KB
testcase_40 WA -
testcase_41 AC 42 ms
53,248 KB
testcase_42 AC 77 ms
74,476 KB
testcase_43 AC 43 ms
53,632 KB
testcase_44 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ABC = [list(map(int,input().split())) for _ in range(N*(N-1)//2)]

ABC.sort(key = lambda x:x[2])
ctd = set()
ans = 0
for abc in ABC:
    a,b,c = abc
    if a in ctd and b in ctd:
        continue
    else:
        ans = max(ans,c)
        ctd.add(a)
        ctd.add(b)
print(ans)
0