結果

問題 No.2353 Guardian Dogs in Spring
ユーザー timitimi
提出日時 2023-06-16 22:20:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 79,328 KB
最終ジャッジ日時 2024-06-24 14:53:32
合計ジャッジ時間 9,741 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,720 KB
testcase_01 AC 39 ms
53,416 KB
testcase_02 AC 40 ms
54,804 KB
testcase_03 AC 39 ms
53,680 KB
testcase_04 AC 40 ms
53,840 KB
testcase_05 AC 106 ms
78,536 KB
testcase_06 AC 97 ms
77,716 KB
testcase_07 AC 102 ms
78,564 KB
testcase_08 AC 103 ms
78,336 KB
testcase_09 AC 123 ms
79,328 KB
testcase_10 AC 123 ms
79,180 KB
testcase_11 AC 106 ms
78,496 KB
testcase_12 AC 105 ms
78,812 KB
testcase_13 AC 104 ms
78,496 KB
testcase_14 AC 42 ms
55,160 KB
testcase_15 AC 106 ms
78,492 KB
testcase_16 AC 106 ms
78,720 KB
testcase_17 AC 107 ms
78,668 KB
testcase_18 AC 109 ms
78,564 KB
testcase_19 AC 111 ms
78,632 KB
testcase_20 AC 43 ms
56,240 KB
testcase_21 AC 82 ms
77,400 KB
testcase_22 AC 103 ms
78,164 KB
testcase_23 AC 108 ms
78,868 KB
testcase_24 AC 82 ms
76,964 KB
testcase_25 AC 100 ms
77,000 KB
testcase_26 AC 59 ms
67,684 KB
testcase_27 AC 43 ms
57,108 KB
testcase_28 AC 89 ms
77,476 KB
testcase_29 AC 104 ms
78,704 KB
testcase_30 AC 102 ms
78,092 KB
testcase_31 AC 101 ms
78,524 KB
testcase_32 AC 107 ms
78,936 KB
testcase_33 AC 108 ms
78,740 KB
testcase_34 AC 105 ms
78,340 KB
testcase_35 AC 107 ms
78,432 KB
testcase_36 AC 86 ms
77,344 KB
testcase_37 AC 62 ms
68,208 KB
testcase_38 AC 100 ms
77,932 KB
testcase_39 AC 102 ms
77,872 KB
testcase_40 AC 102 ms
78,616 KB
testcase_41 AC 101 ms
79,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
D={};E=[]
for i in range(N):
  x,y=map(int, input().split())
  if y not in D:
    E.append(y)
    D[y]=[]
  D[y].append([x,i+1])

ans=[];f=0
E=sorted(E)[::-1]
F=[]
from collections import deque
d=deque()
for e in E:
  A=D[e]
  A=sorted(A)[::-1]
  for a,b in A:
    d.append((a,b))

s=len(d)//2 
for i in range(s):
  _,x=d.popleft()
  _,y=d.popleft()
  ans.append((x,y))
print(len(ans))
for x,y in ans:
  print(x,y)
0