結果

問題 No.5007 Steiner Space Travel
ユーザー 👑 terry_u16terry_u16
提出日時 2022-06-30 22:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 125 bytes
コンパイル時間 591 ms
実行使用メモリ 82,208 KB
スコア 40,224
最終ジャッジ日時 2022-07-30 13:32:41
合計ジャッジ時間 7,683 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
82,052 KB
testcase_01 AC 137 ms
82,192 KB
testcase_02 AC 136 ms
81,788 KB
testcase_03 AC 134 ms
81,928 KB
testcase_04 AC 138 ms
81,716 KB
testcase_05 AC 138 ms
81,680 KB
testcase_06 AC 137 ms
82,088 KB
testcase_07 AC 138 ms
81,752 KB
testcase_08 AC 137 ms
81,820 KB
testcase_09 AC 138 ms
82,188 KB
testcase_10 AC 135 ms
81,972 KB
testcase_11 AC 136 ms
81,676 KB
testcase_12 AC 137 ms
81,728 KB
testcase_13 AC 136 ms
82,204 KB
testcase_14 AC 135 ms
81,716 KB
testcase_15 AC 136 ms
82,164 KB
testcase_16 AC 134 ms
82,016 KB
testcase_17 AC 136 ms
82,184 KB
testcase_18 AC 138 ms
81,712 KB
testcase_19 AC 137 ms
81,964 KB
testcase_20 AC 135 ms
82,208 KB
testcase_21 AC 134 ms
82,144 KB
testcase_22 AC 137 ms
81,724 KB
testcase_23 AC 139 ms
82,148 KB
testcase_24 AC 137 ms
82,008 KB
testcase_25 AC 135 ms
82,156 KB
testcase_26 AC 135 ms
81,700 KB
testcase_27 AC 136 ms
81,760 KB
testcase_28 AC 137 ms
81,768 KB
testcase_29 AC 134 ms
82,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(8):
    print("0 0")

V = 100000
print(V)

for i in range(V - 1):
    print(f"1 {i % 100 + 1}")

print(f"1 1")
0