結果

問題 No.2353 Guardian Dogs in Spring
ユーザー meruuu61779999meruuu61779999
提出日時 2023-06-17 00:02:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-06-24 17:11:59
合計ジャッジ時間 8,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 35 ms
52,284 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 84 ms
77,500 KB
testcase_06 AC 86 ms
77,128 KB
testcase_07 AC 88 ms
77,640 KB
testcase_08 AC 87 ms
77,384 KB
testcase_09 AC 97 ms
77,020 KB
testcase_10 AC 99 ms
76,928 KB
testcase_11 AC 93 ms
77,312 KB
testcase_12 AC 92 ms
77,568 KB
testcase_13 AC 85 ms
77,260 KB
testcase_14 AC 38 ms
52,864 KB
testcase_15 AC 95 ms
77,484 KB
testcase_16 AC 97 ms
77,648 KB
testcase_17 AC 95 ms
77,068 KB
testcase_18 AC 96 ms
77,668 KB
testcase_19 AC 97 ms
77,312 KB
testcase_20 AC 38 ms
52,992 KB
testcase_21 AC 69 ms
73,040 KB
testcase_22 AC 84 ms
76,756 KB
testcase_23 AC 96 ms
77,528 KB
testcase_24 AC 65 ms
70,656 KB
testcase_25 AC 65 ms
70,656 KB
testcase_26 AC 53 ms
63,220 KB
testcase_27 AC 39 ms
52,992 KB
testcase_28 AC 74 ms
73,216 KB
testcase_29 AC 88 ms
77,312 KB
testcase_30 AC 86 ms
77,056 KB
testcase_31 AC 88 ms
76,932 KB
testcase_32 AC 94 ms
77,380 KB
testcase_33 AC 88 ms
77,468 KB
testcase_34 AC 86 ms
77,824 KB
testcase_35 AC 87 ms
77,796 KB
testcase_36 AC 70 ms
73,492 KB
testcase_37 AC 52 ms
63,744 KB
testcase_38 AC 82 ms
76,800 KB
testcase_39 AC 82 ms
77,184 KB
testcase_40 AC 81 ms
76,944 KB
testcase_41 AC 84 ms
77,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
point = []
for pi in range(1, N + 1):
    x, y = map(int, input().split())
    point.append((x, y, pi))
point.sort()

print(len(point) // 2)
for i in range(0, N, 2):
    try:
        print(point[i][2], point[i + 1][2])
    except IndexError:
        exit()
0