結果

問題 No.2353 Guardian Dogs in Spring
ユーザー chankei271828chankei271828
提出日時 2023-06-16 22:12:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-06-24 14:38:23
合計ジャッジ時間 9,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,888 KB
testcase_01 AC 50 ms
53,888 KB
testcase_02 AC 49 ms
53,888 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 45 ms
53,888 KB
testcase_05 AC 112 ms
77,952 KB
testcase_06 AC 113 ms
77,952 KB
testcase_07 AC 112 ms
77,696 KB
testcase_08 AC 112 ms
77,824 KB
testcase_09 AC 113 ms
77,696 KB
testcase_10 AC 113 ms
77,952 KB
testcase_11 AC 115 ms
77,944 KB
testcase_12 AC 117 ms
77,824 KB
testcase_13 AC 115 ms
78,208 KB
testcase_14 AC 49 ms
54,656 KB
testcase_15 AC 118 ms
78,336 KB
testcase_16 AC 118 ms
77,952 KB
testcase_17 AC 118 ms
78,040 KB
testcase_18 AC 117 ms
77,872 KB
testcase_19 AC 121 ms
77,824 KB
testcase_20 AC 49 ms
55,040 KB
testcase_21 AC 90 ms
74,828 KB
testcase_22 AC 112 ms
77,696 KB
testcase_23 AC 118 ms
77,824 KB
testcase_24 AC 89 ms
74,240 KB
testcase_25 AC 87 ms
73,812 KB
testcase_26 AC 70 ms
66,688 KB
testcase_27 AC 50 ms
55,424 KB
testcase_28 AC 105 ms
77,948 KB
testcase_29 AC 114 ms
77,824 KB
testcase_30 AC 111 ms
77,824 KB
testcase_31 AC 112 ms
77,824 KB
testcase_32 AC 116 ms
77,824 KB
testcase_33 AC 114 ms
77,696 KB
testcase_34 AC 115 ms
78,236 KB
testcase_35 AC 113 ms
77,940 KB
testcase_36 AC 103 ms
77,696 KB
testcase_37 AC 71 ms
66,944 KB
testcase_38 AC 111 ms
77,696 KB
testcase_39 AC 110 ms
78,080 KB
testcase_40 AC 112 ms
78,080 KB
testcase_41 AC 112 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
N=int(input())
a=random.randrange(10000,100000000)
b=random.randrange(10000,100000000)
p=[tuple(map(int,input().split())) for _ in range(N)]
l=[(i,a*p[i][0]+b*p[i][1]) for i in range(N)]
l.sort(key=lambda tup:tup[1])
print(N//2)
for i in range(N//2):
    print(l[2*i][0]+1,l[2*i+1][0]+1)
0