結果

問題 No.649 ここでちょっとQK!
ユーザー tentententen
提出日時 2020-09-04 18:14:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,950 ms / 3,000 ms
コード長 1,114 bytes
コンパイル時間 2,640 ms
コンパイル使用メモリ 79,996 KB
実行使用メモリ 77,424 KB
最終ジャッジ日時 2024-05-04 19:24:19
合計ジャッジ時間 40,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,572 KB
testcase_01 AC 114 ms
41,440 KB
testcase_02 AC 122 ms
41,476 KB
testcase_03 AC 624 ms
55,684 KB
testcase_04 AC 2,906 ms
75,784 KB
testcase_05 AC 1,228 ms
65,676 KB
testcase_06 AC 2,950 ms
77,424 KB
testcase_07 AC 108 ms
41,604 KB
testcase_08 AC 110 ms
41,824 KB
testcase_09 AC 116 ms
41,716 KB
testcase_10 AC 114 ms
41,452 KB
testcase_11 AC 114 ms
41,908 KB
testcase_12 AC 1,201 ms
59,460 KB
testcase_13 AC 1,451 ms
59,456 KB
testcase_14 AC 1,207 ms
59,480 KB
testcase_15 AC 1,180 ms
61,260 KB
testcase_16 AC 1,173 ms
61,512 KB
testcase_17 AC 1,308 ms
62,344 KB
testcase_18 AC 1,429 ms
62,124 KB
testcase_19 AC 1,416 ms
63,912 KB
testcase_20 AC 1,586 ms
63,872 KB
testcase_21 AC 1,616 ms
64,164 KB
testcase_22 AC 1,759 ms
62,788 KB
testcase_23 AC 1,692 ms
64,448 KB
testcase_24 AC 1,895 ms
64,780 KB
testcase_25 AC 1,968 ms
65,032 KB
testcase_26 AC 2,113 ms
66,112 KB
testcase_27 AC 178 ms
44,244 KB
testcase_28 AC 178 ms
44,280 KB
testcase_29 AC 181 ms
43,884 KB
testcase_30 AC 1,196 ms
60,920 KB
testcase_31 AC 1,087 ms
61,956 KB
testcase_32 AC 119 ms
41,204 KB
testcase_33 AC 112 ms
41,460 KB
testcase_34 AC 118 ms
41,540 KB
testcase_35 AC 103 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final long MAX = (long)Math.sqrt(Long.MAX_VALUE);
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int q = sc.nextInt();
    	int k = sc.nextInt();
    	StringBuilder sb = new StringBuilder();
    	ArrayList<Long> list = new ArrayList<>();
    	list.add(0L);
    	list.add(Long.MAX_VALUE);
    	for (int i = 0; i < q; i++) {
    	    int type = sc.nextInt();
    	    if (type == 1) {
    	        long x = sc.nextLong();
    	        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