結果

問題 No.3078 Very Simple Traveling Salesman Problem
ユーザー あかりきあかりき
提出日時 2021-04-01 20:14:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 90 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 87,960 KB
最終ジャッジ日時 2024-12-18 01:42:04
合計ジャッジ時間 1,559 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,872 KB
testcase_01 AC 36 ms
51,940 KB
testcase_02 AC 40 ms
52,752 KB
testcase_03 AC 147 ms
86,092 KB
testcase_04 AC 71 ms
76,944 KB
testcase_05 AC 61 ms
72,620 KB
testcase_06 AC 36 ms
51,900 KB
testcase_07 AC 91 ms
78,720 KB
testcase_08 AC 64 ms
74,492 KB
testcase_09 AC 121 ms
84,308 KB
testcase_10 AC 151 ms
87,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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