結果

問題 No.649 ここでちょっとQK!
ユーザー 💕💖💞💕💖💞
提出日時 2018-11-22 17:22:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 302 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 36,572 KB
最終ジャッジ日時 2024-12-24 17:42:31
合計ジャッジ時間 73,761 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,828 KB
testcase_01 AC 26 ms
17,440 KB
testcase_02 AC 26 ms
17,568 KB
testcase_03 AC 1,035 ms
23,636 KB
testcase_04 AC 665 ms
27,480 KB
testcase_05 AC 642 ms
27,056 KB
testcase_06 AC 653 ms
36,572 KB
testcase_07 AC 30 ms
17,448 KB
testcase_08 AC 27 ms
25,380 KB
testcase_09 AC 26 ms
17,572 KB
testcase_10 AC 26 ms
17,700 KB
testcase_11 AC 27 ms
17,448 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 32 ms
17,700 KB
testcase_28 AC 33 ms
17,572 KB
testcase_29 AC 30 ms
10,496 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 28 ms
10,496 KB
testcase_33 AC 28 ms
10,624 KB
testcase_34 AC 27 ms
10,496 KB
testcase_35 AC 27 ms
25,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q, K = map(int, input().split())

s = []

for q in range(Q):
  line = input().strip()
  if line[0] == '1':
    _, val = map(int, line.split())
    s.append(val)
  if line[0] == '2':
    if len(s) < K:
      print(-1)
      continue
    else:
      s = sorted(s)
      val = s.pop(K-1)
      print(val)
0