結果

問題 No.649 ここでちょっとQK!
ユーザー tentententen
提出日時 2020-09-04 18:18:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,790 ms / 3,000 ms
コード長 1,236 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 78,328 KB
実行使用メモリ 60,096 KB
最終ジャッジ日時 2024-05-04 19:32:55
合計ジャッジ時間 31,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,796 KB
testcase_01 AC 51 ms
36,672 KB
testcase_02 AC 51 ms
36,548 KB
testcase_03 AC 201 ms
44,776 KB
testcase_04 AC 2,790 ms
58,968 KB
testcase_05 AC 665 ms
58,524 KB
testcase_06 AC 2,723 ms
58,880 KB
testcase_07 AC 51 ms
36,672 KB
testcase_08 AC 51 ms
36,972 KB
testcase_09 AC 51 ms
36,684 KB
testcase_10 AC 51 ms
36,720 KB
testcase_11 AC 51 ms
36,536 KB
testcase_12 AC 948 ms
59,612 KB
testcase_13 AC 1,019 ms
60,096 KB
testcase_14 AC 971 ms
58,344 KB
testcase_15 AC 963 ms
56,672 KB
testcase_16 AC 837 ms
55,576 KB
testcase_17 AC 916 ms
55,020 KB
testcase_18 AC 991 ms
55,588 KB
testcase_19 AC 1,035 ms
56,676 KB
testcase_20 AC 1,212 ms
56,856 KB
testcase_21 AC 1,321 ms
57,460 KB
testcase_22 AC 1,361 ms
57,060 KB
testcase_23 AC 1,424 ms
58,288 KB
testcase_24 AC 1,495 ms
58,088 KB
testcase_25 AC 1,760 ms
58,088 KB
testcase_26 AC 1,731 ms
59,372 KB
testcase_27 AC 73 ms
37,700 KB
testcase_28 AC 86 ms
37,960 KB
testcase_29 AC 85 ms
37,972 KB
testcase_30 AC 895 ms
57,660 KB
testcase_31 AC 798 ms
55,356 KB
testcase_32 AC 52 ms
36,548 KB
testcase_33 AC 51 ms
36,804 KB
testcase_34 AC 52 ms
36,888 KB
testcase_35 AC 52 ms
36,804 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]);
    	StringBuilder sb = new StringBuilder();
    	ArrayList<Long> list = new ArrayList<>();
    	list.add(0L);
    	list.add(Long.MAX_VALUE);
    	for (int i = 0; i < q; i++) {
    	    String s = br.readLine();
    	    if (s.charAt(0) == '1') {
    	        long x = Long.parseLong(s.split(" ", 2)[1]);
    	        int left = 0;
    	        int right = list.size();
    	        while (right - left > 1) {
    	            int m = (left + right) / 2;
    	            if (list.get(m) < x) {
    	                left = m;
    	            } else {
    	                right = m;
    	            }
    	        }
    	        list.add(right, x);
    	    } else {
    	        if (list.size() < k + 2) {
    	            sb.append(-1);
    	        } else {
    	            sb.append(list.remove(k));
    	        }
    	        sb.append("\n");
    	    }
    	}
	    System.out.print(sb);
    }
}
0