結果

問題 No.1380 Borderline
ユーザー tentententen
提出日時 2021-02-08 08:34:37
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 477 bytes
コンパイル時間 1,900 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-07-05 17:09:44
合計ジャッジ時間 8,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,256 KB
testcase_01 AC 106 ms
40,140 KB
testcase_02 AC 108 ms
41,160 KB
testcase_03 AC 108 ms
40,780 KB
testcase_04 AC 105 ms
41,076 KB
testcase_05 AC 98 ms
40,180 KB
testcase_06 AC 107 ms
41,180 KB
testcase_07 AC 104 ms
40,292 KB
testcase_08 AC 107 ms
40,908 KB
testcase_09 AC 105 ms
41,232 KB
testcase_10 AC 93 ms
39,632 KB
testcase_11 AC 103 ms
41,564 KB
testcase_12 AC 104 ms
41,292 KB
testcase_13 AC 105 ms
40,952 KB
testcase_14 AC 119 ms
41,788 KB
testcase_15 AC 116 ms
41,516 KB
testcase_16 AC 115 ms
41,308 KB
testcase_17 AC 118 ms
41,312 KB
testcase_18 AC 119 ms
41,616 KB
testcase_19 AC 127 ms
41,456 KB
testcase_20 AC 132 ms
41,440 KB
testcase_21 AC 138 ms
41,368 KB
testcase_22 AC 134 ms
41,372 KB
testcase_23 AC 116 ms
41,484 KB
testcase_24 AC 116 ms
41,336 KB
testcase_25 AC 120 ms
41,060 KB
testcase_26 AC 116 ms
41,416 KB
testcase_27 AC 115 ms
41,156 KB
testcase_28 AC 117 ms
41,676 KB
testcase_29 AC 115 ms
41,056 KB
testcase_30 AC 117 ms
41,304 KB
testcase_31 AC 122 ms
41,296 KB
testcase_32 AC 115 ms
41,080 KB
testcase_33 AC 119 ms
41,184 KB
testcase_34 AC 114 ms
41,400 KB
testcase_35 AC 117 ms
41,312 KB
testcase_36 AC 115 ms
40,920 KB
testcase_37 AC 116 ms
41,128 KB
testcase_38 AC 118 ms
41,620 KB
testcase_39 AC 116 ms
41,308 KB
testcase_40 AC 123 ms
41,740 KB
testcase_41 AC 115 ms
41,368 KB
testcase_42 AC 116 ms
41,520 KB
testcase_43 AC 119 ms
41,572 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] arr = new int[n + 2];
        for (int i = 0; i < n; i++) {
            arr[i] = -sc.nextInt();
        }
        arr[n] = Integer.MIN_VALUE;
        Arrays.sort(arr);
        while (arr[k] == arr[k + 1]) {
            k--;
        }
        System.out.println(k);
    }
}
0