結果

問題 No.649 ここでちょっとQK!
ユーザー htensaihtensai
提出日時 2020-06-12 12:54:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,739 ms / 3,000 ms
コード長 1,213 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 78,220 KB
実行使用メモリ 71,360 KB
最終ジャッジ日時 2024-06-24 03:48:59
合計ジャッジ時間 30,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,064 KB
testcase_01 AC 52 ms
50,036 KB
testcase_02 AC 53 ms
50,004 KB
testcase_03 AC 247 ms
56,316 KB
testcase_04 AC 2,739 ms
71,000 KB
testcase_05 AC 648 ms
70,024 KB
testcase_06 AC 652 ms
69,864 KB
testcase_07 AC 52 ms
50,352 KB
testcase_08 AC 52 ms
50,056 KB
testcase_09 AC 54 ms
50,096 KB
testcase_10 AC 54 ms
50,164 KB
testcase_11 AC 54 ms
50,268 KB
testcase_12 AC 1,021 ms
71,200 KB
testcase_13 AC 1,054 ms
68,504 KB
testcase_14 AC 1,104 ms
71,068 KB
testcase_15 AC 1,011 ms
71,360 KB
testcase_16 AC 928 ms
66,828 KB
testcase_17 AC 1,062 ms
67,324 KB
testcase_18 AC 1,074 ms
67,160 KB
testcase_19 AC 1,239 ms
67,116 KB
testcase_20 AC 1,245 ms
69,172 KB
testcase_21 AC 1,311 ms
68,464 KB
testcase_22 AC 1,387 ms
69,128 KB
testcase_23 AC 1,791 ms
71,204 KB
testcase_24 AC 1,659 ms
69,012 KB
testcase_25 AC 1,692 ms
69,176 KB
testcase_26 AC 1,788 ms
71,272 KB
testcase_27 AC 102 ms
51,028 KB
testcase_28 AC 104 ms
51,112 KB
testcase_29 AC 94 ms
51,244 KB
testcase_30 AC 948 ms
64,948 KB
testcase_31 AC 859 ms
66,944 KB
testcase_32 AC 53 ms
50,200 KB
testcase_33 AC 55 ms
50,128 KB
testcase_34 AC 56 ms
50,144 KB
testcase_35 AC 54 ms
50,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(Long.MIN_VALUE);
		list.add(Long.MAX_VALUE);
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < q; i++) {
		    String[] line = br.readLine().split(" ");
		    int type = Integer.parseInt(line[0]);
		    if (type == 1) {
		        long x = Long.parseLong(line[1]);
		        int left = 0;
		        int right = list.size();
		        while (right - left > 1) {
		            int m = (left + right) / 2;
		            if (list.get(m) > x) {
		                right = m;
		            } else {
		                left = m;
		            }
		        }
		        list.add(right, x);
		    } else {
		        if (list.size() - 2 < k) {
		            sb.append(-1);
		        } else {
		            sb.append(list.get(k));
    		        list.remove(k);
		        }
		        sb.append("\n");
		    }
		}
		System.out.print(sb);
	}
}
0