結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー chocoruskchocorusk
提出日時 2020-09-27 00:49:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 429 ms / 4,000 ms
コード長 540 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 132,608 KB
最終ジャッジ日時 2024-06-30 01:40:27
合計ジャッジ時間 17,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 426 ms
132,224 KB
testcase_01 AC 407 ms
132,608 KB
testcase_02 AC 400 ms
132,096 KB
testcase_03 AC 369 ms
132,224 KB
testcase_04 AC 380 ms
131,840 KB
testcase_05 AC 380 ms
132,352 KB
testcase_06 AC 429 ms
132,480 KB
testcase_07 AC 423 ms
132,096 KB
testcase_08 AC 397 ms
132,480 KB
testcase_09 AC 388 ms
131,840 KB
testcase_10 AC 408 ms
130,688 KB
testcase_11 AC 406 ms
130,816 KB
testcase_12 AC 408 ms
130,560 KB
testcase_13 AC 396 ms
130,688 KB
testcase_14 AC 412 ms
130,560 KB
testcase_15 AC 414 ms
130,560 KB
testcase_16 AC 410 ms
130,560 KB
testcase_17 AC 396 ms
130,432 KB
testcase_18 AC 418 ms
130,560 KB
testcase_19 AC 404 ms
130,816 KB
testcase_20 AC 395 ms
130,944 KB
testcase_21 AC 414 ms
130,432 KB
testcase_22 AC 403 ms
130,944 KB
testcase_23 AC 398 ms
130,688 KB
testcase_24 AC 385 ms
130,944 KB
testcase_25 AC 394 ms
130,944 KB
testcase_26 AC 403 ms
130,304 KB
testcase_27 AC 405 ms
130,688 KB
testcase_28 AC 395 ms
130,560 KB
testcase_29 AC 413 ms
130,176 KB
testcase_30 AC 44 ms
60,928 KB
testcase_31 AC 44 ms
61,184 KB
testcase_32 AC 427 ms
131,200 KB
testcase_33 AC 412 ms
130,944 KB
testcase_34 AC 363 ms
132,096 KB
testcase_35 AC 44 ms
60,928 KB
testcase_36 AC 45 ms
61,312 KB
testcase_37 AC 44 ms
61,184 KB
testcase_38 AC 43 ms
61,184 KB
testcase_39 AC 49 ms
64,000 KB
testcase_40 AC 49 ms
64,128 KB
testcase_41 AC 79 ms
75,136 KB
testcase_42 AC 80 ms
75,776 KB
testcase_43 AC 81 ms
75,008 KB
testcase_44 AC 81 ms
74,880 KB
testcase_45 AC 53 ms
65,408 KB
testcase_46 AC 95 ms
83,968 KB
testcase_47 AC 99 ms
83,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read=sys.stdin.buffer.read
readline=sys.stdin.buffer.readline
readlines=sys.stdin.buffer.readlines

n, k=map(int, readline().split())
spu=list(map(int, read().split()))
s=spu[::3]
p=spu[1::3]
u=spu[2::3]
num=[0]*n
v=[[] for _ in range(100001)]
for i, x in enumerate(u):
    v[x].append(i)
for x in range(100001):
    if v[x]:
        v[x].sort(key=lambda i: -s[i]*(10**7)+p[i])
        for j, i in enumerate(v[x]):
            num[i]=j
q=[(-s[i], num[i], p[i], i) for i in range(n)]
q.sort()
for i in range(k):
    print(q[i][3])
0