結果

問題 No.2353 Guardian Dogs in Spring
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-16 21:50:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,752 KB
最終ジャッジ日時 2024-08-16 21:50:56
合計ジャッジ時間 9,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,624 KB
testcase_01 AC 42 ms
59,008 KB
testcase_02 AC 39 ms
58,368 KB
testcase_03 AC 38 ms
58,624 KB
testcase_04 AC 40 ms
58,368 KB
testcase_05 AC 88 ms
76,928 KB
testcase_06 AC 95 ms
77,656 KB
testcase_07 AC 94 ms
77,072 KB
testcase_08 AC 89 ms
77,108 KB
testcase_09 AC 98 ms
77,784 KB
testcase_10 AC 97 ms
77,716 KB
testcase_11 AC 89 ms
77,420 KB
testcase_12 AC 98 ms
77,216 KB
testcase_13 AC 101 ms
77,568 KB
testcase_14 AC 48 ms
59,520 KB
testcase_15 AC 99 ms
78,336 KB
testcase_16 AC 98 ms
78,752 KB
testcase_17 AC 106 ms
78,336 KB
testcase_18 AC 119 ms
78,544 KB
testcase_19 AC 99 ms
77,824 KB
testcase_20 AC 44 ms
60,288 KB
testcase_21 AC 76 ms
76,928 KB
testcase_22 AC 95 ms
77,056 KB
testcase_23 AC 104 ms
77,788 KB
testcase_24 AC 74 ms
76,800 KB
testcase_25 AC 69 ms
73,600 KB
testcase_26 AC 57 ms
67,456 KB
testcase_27 AC 42 ms
60,416 KB
testcase_28 AC 80 ms
77,272 KB
testcase_29 AC 95 ms
77,696 KB
testcase_30 AC 91 ms
77,696 KB
testcase_31 AC 92 ms
77,716 KB
testcase_32 AC 117 ms
77,824 KB
testcase_33 AC 96 ms
77,824 KB
testcase_34 AC 99 ms
78,624 KB
testcase_35 AC 98 ms
77,784 KB
testcase_36 AC 81 ms
77,312 KB
testcase_37 AC 56 ms
67,456 KB
testcase_38 AC 93 ms
77,440 KB
testcase_39 AC 91 ms
77,440 KB
testcase_40 AC 94 ms
77,952 KB
testcase_41 AC 95 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=[tuple(map(int,input().split())) for i in range(n)]
L=8000
q=[[] for i in range(L+1)]
for i in range(n):
  x,y=p[i]
  q[y]+=[(x,i)]
a=[]
for i in range(L+1):
  q[i].sort()
  for _,j in q[i]:
    a+=[j+1]
print(n//2)
for i in range(n//2):
  print(a[i*2],a[i*2+1])
0