結果

問題 No.3078 Very Simple Traveling Salesman Problem
ユーザー convexineqconvexineq
提出日時 2021-04-01 20:18:55
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 30 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 86,744 KB
実行使用メモリ 71,288 KB
最終ジャッジ日時 2023-08-22 23:08:51
合計ジャッジ時間 2,182 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
71,032 KB
testcase_01 AC 88 ms
71,272 KB
testcase_02 AC 80 ms
71,088 KB
testcase_03 AC 83 ms
71,076 KB
testcase_04 AC 93 ms
71,044 KB
testcase_05 AC 82 ms
71,032 KB
testcase_06 AC 82 ms
71,160 KB
testcase_07 AC 88 ms
71,288 KB
testcase_08 AC 85 ms
71,196 KB
testcase_09 AC 81 ms
71,232 KB
testcase_10 AC 80 ms
71,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = input().split()
print(n)
0