結果

問題 No.2353 Guardian Dogs in Spring
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-03-26 01:03:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 77,032 KB
最終ジャッジ日時 2024-10-07 07:19:57
合計ジャッジ時間 10,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,488 KB
testcase_01 AC 38 ms
51,996 KB
testcase_02 AC 38 ms
52,564 KB
testcase_03 AC 37 ms
52,976 KB
testcase_04 AC 38 ms
52,220 KB
testcase_05 AC 87 ms
76,268 KB
testcase_06 AC 87 ms
76,388 KB
testcase_07 AC 87 ms
76,408 KB
testcase_08 AC 88 ms
76,300 KB
testcase_09 AC 101 ms
76,632 KB
testcase_10 AC 100 ms
76,428 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 88 ms
76,600 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 41 ms
53,540 KB
testcase_21 AC 71 ms
73,028 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 67 ms
71,864 KB
testcase_25 AC 66 ms
69,980 KB
testcase_26 AC 53 ms
62,960 KB
testcase_27 AC 41 ms
53,496 KB
testcase_28 AC 72 ms
73,720 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 85 ms
76,452 KB
testcase_34 AC 86 ms
76,228 KB
testcase_35 AC 86 ms
76,272 KB
testcase_36 AC 72 ms
73,416 KB
testcase_37 AC 55 ms
64,576 KB
testcase_38 AC 83 ms
76,524 KB
testcase_39 AC 82 ms
76,168 KB
testcase_40 AC 84 ms
76,356 KB
testcase_41 AC 86 ms
76,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for i in range(N):
    x, y = map(int, input().split())

print(N // 2)
for i in range(N // 2):
    print(i * 2 + 1, i * 2 + 2)
0