結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,780 KB
testcase_01 AC 41 ms
51,676 KB
testcase_02 AC 37 ms
53,164 KB
testcase_03 AC 95 ms
75,828 KB
testcase_04 AC 63 ms
70,328 KB
testcase_05 AC 59 ms
67,568 KB
testcase_06 AC 37 ms
52,780 KB
testcase_07 AC 76 ms
75,812 KB
testcase_08 AC 60 ms
67,916 KB
testcase_09 AC 89 ms
76,068 KB
testcase_10 AC 102 ms
75,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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