結果

問題 No.8078 Very Simple Traveling Salesman Problem
ユーザー marroncastlemarroncastle
提出日時 2021-04-02 01:10:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 71 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-12-21 09:06:21
合計ジャッジ時間 1,636 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 33 ms
51,584 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 90 ms
75,872 KB
testcase_04 AC 58 ms
70,272 KB
testcase_05 AC 53 ms
66,048 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 70 ms
75,648 KB
testcase_08 AC 56 ms
67,456 KB
testcase_09 AC 85 ms
76,032 KB
testcase_10 AC 95 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
for _ in range(M):
    input()
print(N)
0