結果

問題 No.2353 Guardian Dogs in Spring
ユーザー flygonflygon
提出日時 2023-06-16 22:16:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 78,860 KB
最終ジャッジ日時 2024-06-24 14:47:08
合計ジャッジ時間 9,089 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
63,136 KB
testcase_01 AC 48 ms
62,056 KB
testcase_02 AC 48 ms
62,240 KB
testcase_03 AC 50 ms
61,688 KB
testcase_04 AC 50 ms
61,872 KB
testcase_05 AC 84 ms
78,124 KB
testcase_06 AC 87 ms
78,760 KB
testcase_07 AC 86 ms
78,472 KB
testcase_08 AC 85 ms
78,400 KB
testcase_09 AC 92 ms
78,272 KB
testcase_10 AC 89 ms
78,412 KB
testcase_11 AC 86 ms
78,860 KB
testcase_12 AC 90 ms
78,584 KB
testcase_13 AC 89 ms
78,360 KB
testcase_14 AC 52 ms
62,664 KB
testcase_15 AC 91 ms
78,248 KB
testcase_16 AC 96 ms
78,608 KB
testcase_17 AC 91 ms
78,128 KB
testcase_18 AC 94 ms
78,520 KB
testcase_19 AC 90 ms
78,448 KB
testcase_20 AC 54 ms
63,840 KB
testcase_21 AC 66 ms
71,036 KB
testcase_22 AC 83 ms
77,944 KB
testcase_23 AC 93 ms
78,052 KB
testcase_24 AC 66 ms
72,180 KB
testcase_25 AC 65 ms
69,184 KB
testcase_26 AC 60 ms
67,336 KB
testcase_27 AC 57 ms
63,176 KB
testcase_28 AC 73 ms
73,576 KB
testcase_29 AC 91 ms
78,352 KB
testcase_30 AC 89 ms
77,960 KB
testcase_31 AC 86 ms
77,708 KB
testcase_32 AC 97 ms
77,868 KB
testcase_33 AC 87 ms
78,472 KB
testcase_34 AC 91 ms
78,208 KB
testcase_35 AC 93 ms
78,152 KB
testcase_36 AC 69 ms
72,980 KB
testcase_37 AC 61 ms
67,068 KB
testcase_38 AC 87 ms
78,268 KB
testcase_39 AC 81 ms
77,568 KB
testcase_40 AC 85 ms
78,060 KB
testcase_41 AC 91 ms
77,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd
n = int(input())
xs = [[] for i in range(8050)]
for i in range(n):
    x,y = map(int,input().split())
    xs[x].append((y,i))

ans = []
left = []
for x in range(8050):
    xs[x].sort()
    for y,i in xs[x]:
        if not left:
            left.append(i+1)
        else:
            ans.append([i+1,left.pop()])
    
print(len(ans))
for a,b in ans:
    print(a,b)

0