結果

問題 No.2353 Guardian Dogs in Spring
ユーザー lloyzlloyz
提出日時 2023-06-16 23:26:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 190 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 78,776 KB
最終ジャッジ日時 2024-06-24 16:44:38
合計ジャッジ時間 8,929 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 37 ms
52,536 KB
testcase_02 AC 37 ms
52,756 KB
testcase_03 AC 37 ms
52,136 KB
testcase_04 AC 37 ms
52,084 KB
testcase_05 AC 95 ms
77,408 KB
testcase_06 AC 99 ms
77,256 KB
testcase_07 AC 96 ms
77,676 KB
testcase_08 AC 96 ms
77,736 KB
testcase_09 AC 95 ms
77,256 KB
testcase_10 AC 98 ms
77,408 KB
testcase_11 AC 104 ms
77,528 KB
testcase_12 AC 107 ms
78,168 KB
testcase_13 AC 98 ms
77,480 KB
testcase_14 AC 42 ms
54,928 KB
testcase_15 AC 113 ms
77,512 KB
testcase_16 AC 111 ms
77,516 KB
testcase_17 AC 111 ms
77,808 KB
testcase_18 AC 111 ms
77,912 KB
testcase_19 AC 111 ms
77,816 KB
testcase_20 AC 42 ms
54,252 KB
testcase_21 AC 80 ms
76,876 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 60 ms
67,280 KB
testcase_27 AC 42 ms
53,932 KB
testcase_28 AC 89 ms
76,972 KB
testcase_29 AC 102 ms
77,520 KB
testcase_30 RE -
testcase_31 AC 100 ms
77,416 KB
testcase_32 AC 109 ms
77,612 KB
testcase_33 AC 100 ms
77,764 KB
testcase_34 AC 99 ms
77,372 KB
testcase_35 AC 99 ms
77,408 KB
testcase_36 AC 85 ms
77,116 KB
testcase_37 AC 60 ms
67,940 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 96 ms
77,448 KB
testcase_41 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
P = [list(map(int, input().split())) + [i + 1] for i in range(n)]

P.sort(key=lambda x: (x[0], x[1]))
print(n // 2)
for i in range(0, n, 2):
    print(P[i][2], P[i + 1][2])
0