結果

問題 No.1380 Borderline
ユーザー tentententen
提出日時 2021-02-08 17:33:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 477 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-07-05 19:24:29
合計ジャッジ時間 9,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,432 KB
testcase_01 AC 127 ms
41,088 KB
testcase_02 AC 126 ms
40,924 KB
testcase_03 AC 121 ms
41,200 KB
testcase_04 AC 126 ms
41,264 KB
testcase_05 AC 116 ms
40,056 KB
testcase_06 AC 128 ms
41,264 KB
testcase_07 AC 125 ms
41,336 KB
testcase_08 AC 121 ms
39,896 KB
testcase_09 AC 126 ms
40,972 KB
testcase_10 AC 126 ms
41,048 KB
testcase_11 AC 121 ms
41,244 KB
testcase_12 AC 124 ms
41,188 KB
testcase_13 AC 121 ms
40,056 KB
testcase_14 AC 138 ms
41,080 KB
testcase_15 AC 131 ms
40,884 KB
testcase_16 AC 138 ms
41,284 KB
testcase_17 AC 138 ms
41,668 KB
testcase_18 AC 139 ms
41,432 KB
testcase_19 AC 139 ms
41,460 KB
testcase_20 AC 136 ms
41,216 KB
testcase_21 AC 146 ms
41,160 KB
testcase_22 AC 139 ms
41,548 KB
testcase_23 AC 136 ms
41,128 KB
testcase_24 AC 141 ms
41,160 KB
testcase_25 AC 136 ms
41,308 KB
testcase_26 AC 135 ms
41,472 KB
testcase_27 AC 138 ms
41,148 KB
testcase_28 AC 140 ms
40,956 KB
testcase_29 AC 136 ms
41,208 KB
testcase_30 AC 136 ms
41,408 KB
testcase_31 AC 134 ms
41,292 KB
testcase_32 AC 139 ms
41,084 KB
testcase_33 AC 137 ms
41,432 KB
testcase_34 AC 139 ms
41,336 KB
testcase_35 AC 142 ms
41,296 KB
testcase_36 AC 138 ms
41,112 KB
testcase_37 AC 138 ms
41,536 KB
testcase_38 AC 141 ms
41,216 KB
testcase_39 AC 145 ms
41,528 KB
testcase_40 AC 130 ms
41,108 KB
testcase_41 AC 139 ms
41,568 KB
testcase_42 AC 139 ms
41,024 KB
testcase_43 AC 136 ms
41,344 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