結果

問題 No.3078 Very Simple Traveling Salesman Problem
ユーザー OR6107OR6107
提出日時 2021-04-01 22:59:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 76,440 KB
最終ジャッジ日時 2024-06-01 04:24:33
合計ジャッジ時間 1,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,196 KB
testcase_01 AC 39 ms
52,500 KB
testcase_02 AC 39 ms
52,236 KB
testcase_03 AC 113 ms
75,960 KB
testcase_04 AC 70 ms
74,524 KB
testcase_05 AC 66 ms
70,920 KB
testcase_06 AC 40 ms
53,076 KB
testcase_07 AC 86 ms
75,940 KB
testcase_08 AC 68 ms
71,300 KB
testcase_09 AC 107 ms
76,004 KB
testcase_10 AC 122 ms
76,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = 10**10
for i in range(m):
    u,v,w = map(int,input().split())
    a = min(a,w)
print(n)
0