結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-10-31 23:00:00
言語 Nim
(2.0.2)
結果
AC  
実行時間 193 ms / 4,000 ms
コード長 561 bytes
コンパイル時間 3,767 ms
コンパイル使用メモリ 72,692 KB
実行使用メモリ 20,928 KB
最終ジャッジ日時 2024-06-29 19:51:12
合計ジャッジ時間 11,917 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
15,744 KB
testcase_01 AC 165 ms
15,744 KB
testcase_02 AC 138 ms
17,792 KB
testcase_03 AC 163 ms
17,664 KB
testcase_04 AC 161 ms
17,792 KB
testcase_05 AC 153 ms
17,664 KB
testcase_06 AC 193 ms
15,744 KB
testcase_07 AC 139 ms
15,744 KB
testcase_08 AC 135 ms
17,500 KB
testcase_09 AC 144 ms
18,048 KB
testcase_10 AC 147 ms
20,040 KB
testcase_11 AC 157 ms
16,596 KB
testcase_12 AC 154 ms
20,072 KB
testcase_13 AC 122 ms
20,016 KB
testcase_14 AC 138 ms
19,712 KB
testcase_15 AC 116 ms
19,328 KB
testcase_16 AC 168 ms
17,280 KB
testcase_17 AC 167 ms
20,096 KB
testcase_18 AC 173 ms
20,864 KB
testcase_19 AC 122 ms
20,480 KB
testcase_20 AC 132 ms
20,184 KB
testcase_21 AC 127 ms
19,840 KB
testcase_22 AC 154 ms
18,684 KB
testcase_23 AC 138 ms
19,712 KB
testcase_24 AC 121 ms
19,584 KB
testcase_25 AC 149 ms
18,688 KB
testcase_26 AC 130 ms
19,584 KB
testcase_27 AC 145 ms
14,976 KB
testcase_28 AC 121 ms
20,928 KB
testcase_29 AC 157 ms
20,720 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 172 ms
19,072 KB
testcase_33 AC 175 ms
19,796 KB
testcase_34 AC 137 ms
17,664 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 4 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
testcase_38 AC 4 ms
5,376 KB
testcase_39 AC 5 ms
5,376 KB
testcase_40 AC 5 ms
5,376 KB
testcase_41 AC 16 ms
6,144 KB
testcase_42 AC 15 ms
6,144 KB
testcase_43 AC 15 ms
6,400 KB
testcase_44 AC 15 ms
6,400 KB
testcase_45 AC 6 ms
5,376 KB
testcase_46 AC 27 ms
6,016 KB
testcase_47 AC 27 ms
6,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 39) Warning: imported and not used: 'tables' [UnusedImport]

ソースコード

diff #

import strutils, sequtils, algorithm, tables

var
  tmp = stdin.readline.split.map(parseint)
  (n, k) = (tmp[0], tmp[1])
  a: seq[(int, int, int, int)] = @[]
  u = newSeqWith(100000, newSeq[(int, int, int)]())

for i in 0..n-1:
  var tmp = stdin.readline.split.map(parseint)
  u[tmp[2]].add((tmp[0], -tmp[1], i))

for i in 0..u.len-1:
  if u[i].len == 0: continue
  u[i].sort(system.cmp, SortOrder.Descending)
  for j in 0..u[i].len-1:
    a.add((u[i][j][0], -j, u[i][j][1], u[i][j][2]))

a.sort(system.cmp, SortOrder.Descending)
for i in 0..k-1:
  echo a[i][3]
0