結果

問題 No.5007 Steiner Space Travel
ユーザー 👑 terry_u16terry_u16
提出日時 2022-07-02 12:24:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 15 ms / 1,000 ms
コード長 193 bytes
コンパイル時間 58 ms
実行使用メモリ 7,668 KB
スコア 1,221,702
最終ジャッジ日時 2022-07-30 13:32:14
合計ジャッジ時間 1,896 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,516 KB
testcase_01 AC 13 ms
7,668 KB
testcase_02 AC 13 ms
7,436 KB
testcase_03 AC 13 ms
7,512 KB
testcase_04 AC 13 ms
7,432 KB
testcase_05 AC 13 ms
7,504 KB
testcase_06 AC 13 ms
7,496 KB
testcase_07 AC 13 ms
7,528 KB
testcase_08 AC 13 ms
7,444 KB
testcase_09 AC 14 ms
7,496 KB
testcase_10 AC 14 ms
7,520 KB
testcase_11 AC 15 ms
7,440 KB
testcase_12 AC 13 ms
7,516 KB
testcase_13 AC 13 ms
7,524 KB
testcase_14 AC 13 ms
7,440 KB
testcase_15 AC 13 ms
7,472 KB
testcase_16 AC 13 ms
7,468 KB
testcase_17 AC 13 ms
7,512 KB
testcase_18 AC 13 ms
7,496 KB
testcase_19 AC 14 ms
7,520 KB
testcase_20 AC 13 ms
7,516 KB
testcase_21 AC 14 ms
7,448 KB
testcase_22 AC 14 ms
7,528 KB
testcase_23 AC 13 ms
7,572 KB
testcase_24 AC 14 ms
7,428 KB
testcase_25 AC 14 ms
7,436 KB
testcase_26 AC 13 ms
7,620 KB
testcase_27 AC 13 ms
7,444 KB
testcase_28 AC 13 ms
7,580 KB
testcase_29 AC 13 ms
7,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print("0 0")
print("500 0")
print("1000 0")
print("1000 500")
print("1000 1000")
print("500 1000")
print("0 1000")
print("0 500")
print(101)

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