結果

問題 No.3078 Very Simple Traveling Salesman Problem
ユーザー あかりきあかりき
提出日時 2021-04-01 20:14:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 90 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 86,664 KB
実行使用メモリ 89,012 KB
最終ジャッジ日時 2023-08-22 22:58:04
合計ジャッジ時間 2,190 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,108 KB
testcase_01 AC 73 ms
71,172 KB
testcase_02 AC 69 ms
71,172 KB
testcase_03 AC 184 ms
86,952 KB
testcase_04 AC 104 ms
77,928 KB
testcase_05 AC 95 ms
76,744 KB
testcase_06 AC 70 ms
71,320 KB
testcase_07 AC 119 ms
79,560 KB
testcase_08 AC 99 ms
77,828 KB
testcase_09 AC 154 ms
85,240 KB
testcase_10 AC 174 ms
89,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
l=[list(map(int,input().split())) for i in range(m)]
print(n)
0