結果
問題 | No.649 ここでちょっとQK! |
ユーザー | htensai |
提出日時 | 2019-12-12 12:18:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 2,376 ms / 3,000 ms |
コード長 | 1,388 bytes |
コンパイル時間 | 2,151 ms |
コンパイル使用メモリ | 79,084 KB |
実行使用メモリ | 54,076 KB |
最終ジャッジ日時 | 2024-06-24 22:16:22 |
合計ジャッジ時間 | 22,088 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
36,732 KB |
testcase_01 | AC | 52 ms
37,172 KB |
testcase_02 | AC | 52 ms
37,196 KB |
testcase_03 | AC | 213 ms
45,100 KB |
testcase_04 | AC | 2,376 ms
53,876 KB |
testcase_05 | AC | 346 ms
54,048 KB |
testcase_06 | AC | 345 ms
54,076 KB |
testcase_07 | AC | 52 ms
37,212 KB |
testcase_08 | AC | 51 ms
37,120 KB |
testcase_09 | AC | 52 ms
36,956 KB |
testcase_10 | AC | 52 ms
37,120 KB |
testcase_11 | AC | 52 ms
37,040 KB |
testcase_12 | AC | 613 ms
51,344 KB |
testcase_13 | AC | 603 ms
51,960 KB |
testcase_14 | AC | 597 ms
52,328 KB |
testcase_15 | AC | 598 ms
51,444 KB |
testcase_16 | AC | 573 ms
50,308 KB |
testcase_17 | AC | 699 ms
51,096 KB |
testcase_18 | AC | 711 ms
51,152 KB |
testcase_19 | AC | 773 ms
52,220 KB |
testcase_20 | AC | 913 ms
51,772 KB |
testcase_21 | AC | 912 ms
51,864 KB |
testcase_22 | AC | 992 ms
52,296 KB |
testcase_23 | AC | 1,084 ms
52,828 KB |
testcase_24 | AC | 1,182 ms
52,920 KB |
testcase_25 | AC | 1,275 ms
52,960 KB |
testcase_26 | AC | 1,376 ms
53,424 KB |
testcase_27 | AC | 63 ms
37,276 KB |
testcase_28 | AC | 62 ms
37,692 KB |
testcase_29 | AC | 61 ms
37,836 KB |
testcase_30 | AC | 564 ms
52,080 KB |
testcase_31 | AC | 601 ms
50,648 KB |
testcase_32 | AC | 52 ms
37,108 KB |
testcase_33 | AC | 51 ms
37,188 KB |
testcase_34 | AC | 52 ms
36,840 KB |
testcase_35 | AC | 51 ms
36,640 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] first = br.readLine().split(" ", 2); int q = Integer.parseInt(first[0]); int k = Integer.parseInt(first[1]); ArrayList<Long> list = new ArrayList<>(); list.add(0L); list.add(Long.MAX_VALUE); StringBuilder sb = new StringBuilder(); for (int i = 0; i < q; i++) { String line = br.readLine(); if (line.charAt(0) == '1') { long y = Long.parseLong(line.substring(2, line.length())); int left = 0; int right = list.size() - 1; while (right - left > 1) { int m = (left + right) / 2; if (list.get(m) <= y) { left = m; } else { right = m; } } list.add(right, y); } else { long ans; if (list.size() < k + 2) { ans = -1; } else { ans = list.remove(k); } sb.append(ans).append("\n"); } } System.out.print(sb); } }