結果

問題 No.649 ここでちょっとQK!
ユーザー tentententen
提出日時 2020-09-04 18:14:10
言語 Java
(openjdk 23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,114 bytes
コンパイル時間 2,662 ms
コンパイル使用メモリ 79,664 KB
実行使用メモリ 75,832 KB
最終ジャッジ日時 2024-11-26 09:19:18
合計ジャッジ時間 42,583 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,084 KB
testcase_01 AC 122 ms
41,280 KB
testcase_02 AC 120 ms
41,420 KB
testcase_03 AC 710 ms
55,204 KB
testcase_04 TLE -
testcase_05 AC 1,286 ms
65,712 KB
testcase_06 TLE -
testcase_07 AC 107 ms
40,200 KB
testcase_08 AC 121 ms
41,344 KB
testcase_09 AC 122 ms
40,936 KB
testcase_10 AC 124 ms
41,492 KB
testcase_11 AC 117 ms
41,292 KB
testcase_12 AC 1,223 ms
61,568 KB
testcase_13 AC 1,309 ms
59,568 KB
testcase_14 AC 1,280 ms
59,968 KB
testcase_15 AC 1,418 ms
61,624 KB
testcase_16 AC 1,243 ms
61,324 KB
testcase_17 AC 1,429 ms
61,576 KB
testcase_18 AC 1,554 ms
62,548 KB
testcase_19 AC 1,671 ms
62,996 KB
testcase_20 AC 1,680 ms
63,928 KB
testcase_21 AC 1,809 ms
63,928 KB
testcase_22 AC 1,840 ms
63,344 KB
testcase_23 AC 2,052 ms
64,060 KB
testcase_24 AC 2,020 ms
64,604 KB
testcase_25 AC 2,148 ms
64,668 KB
testcase_26 AC 2,606 ms
65,948 KB
testcase_27 AC 179 ms
43,492 KB
testcase_28 AC 174 ms
43,172 KB
testcase_29 AC 186 ms
43,248 KB
testcase_30 AC 1,161 ms
59,364 KB
testcase_31 AC 1,185 ms
61,436 KB
testcase_32 AC 102 ms
39,836 KB
testcase_33 AC 113 ms
41,092 KB
testcase_34 AC 100 ms
40,036 KB
testcase_35 AC 110 ms
40,860 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