結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 102 ms
76,416 KB
testcase_06 AC 102 ms
76,416 KB
testcase_07 AC 103 ms
76,544 KB
testcase_08 AC 102 ms
76,288 KB
testcase_09 AC 118 ms
76,928 KB
testcase_10 AC 117 ms
76,544 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 102 ms
76,416 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 45 ms
52,864 KB
testcase_21 AC 86 ms
72,320 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 83 ms
70,656 KB
testcase_25 AC 79 ms
69,632 KB
testcase_26 AC 65 ms
63,104 KB
testcase_27 AC 47 ms
52,992 KB
testcase_28 AC 87 ms
72,704 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 103 ms
76,288 KB
testcase_34 AC 105 ms
76,416 KB
testcase_35 AC 103 ms
76,160 KB
testcase_36 AC 88 ms
72,832 KB
testcase_37 AC 64 ms
63,232 KB
testcase_38 AC 100 ms
76,672 KB
testcase_39 AC 99 ms
76,416 KB
testcase_40 AC 104 ms
76,672 KB
testcase_41 AC 105 ms
76,416 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