結果

問題 No.2353 Guardian Dogs in Spring
ユーザー sepa38sepa38
提出日時 2023-06-17 10:31:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 77,632 KB
最終ジャッジ日時 2024-06-25 02:10:59
合計ジャッジ時間 9,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,004 KB
testcase_01 AC 37 ms
52,316 KB
testcase_02 AC 35 ms
53,376 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 AC 37 ms
53,296 KB
testcase_05 AC 100 ms
77,080 KB
testcase_06 AC 95 ms
77,180 KB
testcase_07 AC 93 ms
77,100 KB
testcase_08 AC 92 ms
77,116 KB
testcase_09 AC 95 ms
77,360 KB
testcase_10 AC 95 ms
76,936 KB
testcase_11 AC 101 ms
77,144 KB
testcase_12 AC 104 ms
77,136 KB
testcase_13 AC 97 ms
77,124 KB
testcase_14 AC 40 ms
53,024 KB
testcase_15 AC 108 ms
77,380 KB
testcase_16 AC 106 ms
77,160 KB
testcase_17 AC 105 ms
77,088 KB
testcase_18 AC 105 ms
77,132 KB
testcase_19 AC 105 ms
77,076 KB
testcase_20 AC 40 ms
54,500 KB
testcase_21 AC 75 ms
74,076 KB
testcase_22 AC 95 ms
77,240 KB
testcase_23 AC 104 ms
77,632 KB
testcase_24 AC 72 ms
73,616 KB
testcase_25 AC 65 ms
68,728 KB
testcase_26 AC 58 ms
66,052 KB
testcase_27 AC 41 ms
53,444 KB
testcase_28 AC 84 ms
76,592 KB
testcase_29 AC 98 ms
77,096 KB
testcase_30 AC 93 ms
76,884 KB
testcase_31 AC 96 ms
77,140 KB
testcase_32 AC 102 ms
76,968 KB
testcase_33 AC 97 ms
77,072 KB
testcase_34 AC 95 ms
76,904 KB
testcase_35 AC 97 ms
77,272 KB
testcase_36 AC 81 ms
76,588 KB
testcase_37 AC 58 ms
66,336 KB
testcase_38 AC 89 ms
77,300 KB
testcase_39 AC 88 ms
76,892 KB
testcase_40 AC 93 ms
77,424 KB
testcase_41 AC 93 ms
77,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ls = [list(map(int, input().split())) + [i] for i in range(n)]
ls.sort()
print(n//2)
for i in range(n//2):
  print(ls[i*2][2]+1, ls[i*2+1][2] + 1)
0