結果

問題 No.2353 Guardian Dogs in Spring
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-06-16 21:35:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 78,008 KB
最終ジャッジ日時 2024-06-24 13:14:52
合計ジャッジ時間 8,126 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,852 KB
testcase_01 AC 37 ms
52,852 KB
testcase_02 AC 37 ms
52,752 KB
testcase_03 AC 37 ms
52,144 KB
testcase_04 AC 37 ms
53,688 KB
testcase_05 AC 73 ms
76,716 KB
testcase_06 AC 75 ms
77,788 KB
testcase_07 AC 75 ms
77,972 KB
testcase_08 AC 75 ms
78,008 KB
testcase_09 AC 80 ms
77,508 KB
testcase_10 AC 83 ms
77,324 KB
testcase_11 AC 78 ms
77,560 KB
testcase_12 AC 80 ms
77,864 KB
testcase_13 AC 78 ms
77,604 KB
testcase_14 AC 39 ms
54,028 KB
testcase_15 AC 81 ms
77,448 KB
testcase_16 AC 80 ms
77,564 KB
testcase_17 AC 82 ms
77,900 KB
testcase_18 AC 89 ms
77,272 KB
testcase_19 AC 83 ms
77,816 KB
testcase_20 AC 39 ms
53,896 KB
testcase_21 AC 57 ms
67,124 KB
testcase_22 AC 75 ms
77,072 KB
testcase_23 AC 81 ms
77,528 KB
testcase_24 AC 56 ms
67,340 KB
testcase_25 AC 55 ms
66,688 KB
testcase_26 AC 47 ms
61,404 KB
testcase_27 AC 40 ms
53,852 KB
testcase_28 AC 64 ms
70,632 KB
testcase_29 AC 80 ms
77,552 KB
testcase_30 AC 76 ms
76,696 KB
testcase_31 AC 79 ms
77,336 KB
testcase_32 AC 79 ms
77,284 KB
testcase_33 AC 78 ms
77,844 KB
testcase_34 AC 80 ms
77,340 KB
testcase_35 AC 81 ms
77,364 KB
testcase_36 AC 61 ms
69,856 KB
testcase_37 AC 48 ms
62,096 KB
testcase_38 AC 69 ms
74,844 KB
testcase_39 AC 67 ms
74,708 KB
testcase_40 AC 74 ms
77,220 KB
testcase_41 AC 81 ms
77,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin

N = int(stdin.readline())

dic = {}
xlis = []

for i in range(N):

    x,y = map(int,stdin.readline().split())

    if x not in dic:
        dic[x] = []
        xlis.append(x)
    
    dic[x].append( (y,i+1) )

wait = None
ans = []

xlis.sort()

for x in xlis:

    dic[x].sort()

    for y,i in dic[x]:
        if wait != None:
            ans.append( (wait,i) )
            wait = None
        else:
            wait = i

print (len(ans))
for i,j in ans:
    print (i,j)
0