結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー roarisroaris
提出日時 2019-12-14 21:05:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 676 ms / 4,000 ms
コード長 330 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 117,764 KB
最終ジャッジ日時 2024-06-28 03:25:39
合計ジャッジ時間 25,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 576 ms
116,104 KB
testcase_01 AC 572 ms
116,280 KB
testcase_02 AC 575 ms
116,196 KB
testcase_03 AC 599 ms
116,752 KB
testcase_04 AC 605 ms
116,416 KB
testcase_05 AC 593 ms
116,680 KB
testcase_06 AC 588 ms
116,072 KB
testcase_07 AC 601 ms
116,464 KB
testcase_08 AC 595 ms
116,128 KB
testcase_09 AC 618 ms
116,520 KB
testcase_10 AC 648 ms
117,156 KB
testcase_11 AC 660 ms
117,484 KB
testcase_12 AC 649 ms
117,508 KB
testcase_13 AC 660 ms
117,188 KB
testcase_14 AC 659 ms
117,236 KB
testcase_15 AC 611 ms
117,556 KB
testcase_16 AC 670 ms
117,320 KB
testcase_17 AC 666 ms
117,412 KB
testcase_18 AC 676 ms
117,168 KB
testcase_19 AC 661 ms
117,616 KB
testcase_20 AC 658 ms
117,372 KB
testcase_21 AC 669 ms
117,764 KB
testcase_22 AC 662 ms
117,348 KB
testcase_23 AC 659 ms
117,000 KB
testcase_24 AC 652 ms
117,272 KB
testcase_25 AC 660 ms
117,232 KB
testcase_26 AC 643 ms
117,608 KB
testcase_27 AC 655 ms
117,348 KB
testcase_28 AC 638 ms
117,480 KB
testcase_29 AC 651 ms
117,480 KB
testcase_30 AC 38 ms
51,880 KB
testcase_31 AC 38 ms
51,940 KB
testcase_32 AC 644 ms
116,868 KB
testcase_33 AC 650 ms
117,240 KB
testcase_34 AC 603 ms
116,664 KB
testcase_35 AC 38 ms
52,704 KB
testcase_36 AC 38 ms
52,056 KB
testcase_37 AC 40 ms
53,860 KB
testcase_38 AC 40 ms
53,296 KB
testcase_39 AC 61 ms
66,652 KB
testcase_40 AC 61 ms
67,580 KB
testcase_41 AC 118 ms
78,240 KB
testcase_42 AC 118 ms
77,984 KB
testcase_43 AC 110 ms
78,172 KB
testcase_44 AC 107 ms
77,704 KB
testcase_45 AC 69 ms
70,380 KB
testcase_46 AC 118 ms
77,964 KB
testcase_47 AC 124 ms
77,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
SPU = [tuple(map(int, input().split()))+(i,) for i in range(N)]
SPU.sort(key=lambda k: (-k[0], k[1]))
cnt = [0]*(N+1)
SPU_ = []

for Si, Pi, Ui, i in SPU:
    SPU_.append((Si, cnt[Ui], Pi, i))
    cnt[Ui] += 1

SPU_.sort(key=lambda k: (-k[0], k[1], k[2]))

for _, _, _, i in SPU_[:K]:
    print(i)
0