結果

問題 No.649 ここでちょっとQK!
ユーザー tentententen
提出日時 2023-04-10 14:51:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,604 ms / 3,000 ms
コード長 2,371 bytes
コンパイル時間 3,493 ms
コンパイル使用メモリ 96,164 KB
実行使用メモリ 61,004 KB
最終ジャッジ日時 2024-10-05 23:26:50
合計ジャッジ時間 30,792 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,844 KB
testcase_01 AC 51 ms
36,600 KB
testcase_02 AC 51 ms
36,884 KB
testcase_03 AC 257 ms
46,060 KB
testcase_04 AC 2,604 ms
53,836 KB
testcase_05 AC 505 ms
54,208 KB
testcase_06 AC 2,525 ms
53,896 KB
testcase_07 AC 53 ms
37,140 KB
testcase_08 AC 52 ms
36,956 KB
testcase_09 AC 53 ms
36,884 KB
testcase_10 AC 52 ms
36,736 KB
testcase_11 AC 53 ms
36,636 KB
testcase_12 AC 834 ms
52,044 KB
testcase_13 AC 800 ms
52,448 KB
testcase_14 AC 753 ms
51,908 KB
testcase_15 AC 895 ms
61,004 KB
testcase_16 AC 859 ms
59,616 KB
testcase_17 AC 769 ms
50,640 KB
testcase_18 AC 983 ms
50,676 KB
testcase_19 AC 1,043 ms
51,200 KB
testcase_20 AC 1,121 ms
52,288 KB
testcase_21 AC 1,123 ms
52,428 KB
testcase_22 AC 1,185 ms
52,608 KB
testcase_23 AC 1,301 ms
53,020 KB
testcase_24 AC 1,550 ms
53,068 KB
testcase_25 AC 1,499 ms
53,252 KB
testcase_26 AC 1,582 ms
54,636 KB
testcase_27 AC 90 ms
38,028 KB
testcase_28 AC 81 ms
37,980 KB
testcase_29 AC 92 ms
37,652 KB
testcase_30 AC 674 ms
49,848 KB
testcase_31 AC 669 ms
49,368 KB
testcase_32 AC 52 ms
37,036 KB
testcase_33 AC 53 ms
36,504 KB
testcase_34 AC 53 ms
37,044 KB
testcase_35 AC 53 ms
36,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        ArrayList<Long> list = new ArrayList<>();
        list.add(-1L);
        list.add(Long.MAX_VALUE);
        StringBuilder sb = new StringBuilder();
        while (n-- > 0) {
            if (sc.nextInt() == 1) {
                long v = sc.nextLong();
                int left = 0;
                int right = list.size();
                while (right - left > 1) {
                    int m = (left + right) / 2;
                    if (list.get(m) < v) {
                        left = m;
                    } else {
                        right = m;
                    }
                }
                list.add(right, v);
            } else {
                if (list.size() > k + 1) {
                    sb.append(list.remove(k)).append("\n");
                } else {
                    sb.append("-1\n");
                }
            }
        }
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0