結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,816 KB
testcase_01 AC 47 ms
37,196 KB
testcase_02 AC 46 ms
36,880 KB
testcase_03 AC 191 ms
45,272 KB
testcase_04 AC 2,512 ms
58,116 KB
testcase_05 AC 555 ms
58,296 KB
testcase_06 AC 2,484 ms
59,072 KB
testcase_07 AC 45 ms
36,972 KB
testcase_08 AC 47 ms
36,872 KB
testcase_09 AC 50 ms
36,656 KB
testcase_10 AC 48 ms
37,036 KB
testcase_11 AC 49 ms
36,736 KB
testcase_12 AC 921 ms
59,916 KB
testcase_13 AC 916 ms
60,212 KB
testcase_14 AC 824 ms
59,676 KB
testcase_15 AC 857 ms
57,368 KB
testcase_16 AC 835 ms
55,524 KB
testcase_17 AC 901 ms
55,368 KB
testcase_18 AC 919 ms
56,596 KB
testcase_19 AC 963 ms
56,740 KB
testcase_20 AC 1,069 ms
57,100 KB
testcase_21 AC 1,188 ms
58,508 KB
testcase_22 AC 1,236 ms
58,736 KB
testcase_23 AC 1,319 ms
58,176 KB
testcase_24 AC 1,369 ms
58,176 KB
testcase_25 AC 1,419 ms
58,812 KB
testcase_26 AC 1,549 ms
59,876 KB
testcase_27 AC 69 ms
38,008 KB
testcase_28 AC 67 ms
37,648 KB
testcase_29 AC 69 ms
37,732 KB
testcase_30 AC 798 ms
58,008 KB
testcase_31 AC 715 ms
55,480 KB
testcase_32 AC 49 ms
37,044 KB
testcase_33 AC 48 ms
37,040 KB
testcase_34 AC 47 ms
36,944 KB
testcase_35 AC 45 ms
36,820 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