結果

問題 No.1380 Borderline
ユーザー tentententen
提出日時 2021-02-08 17:35:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 73,928 KB
実行使用メモリ 41,964 KB
最終ジャッジ日時 2024-07-05 19:26:09
合計ジャッジ時間 9,233 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,008 KB
testcase_01 AC 126 ms
41,044 KB
testcase_02 AC 127 ms
41,240 KB
testcase_03 AC 133 ms
41,288 KB
testcase_04 AC 129 ms
41,372 KB
testcase_05 AC 125 ms
41,292 KB
testcase_06 AC 124 ms
41,280 KB
testcase_07 AC 113 ms
40,036 KB
testcase_08 AC 125 ms
41,104 KB
testcase_09 AC 113 ms
40,208 KB
testcase_10 AC 122 ms
41,464 KB
testcase_11 AC 121 ms
41,272 KB
testcase_12 AC 112 ms
40,020 KB
testcase_13 AC 124 ms
41,068 KB
testcase_14 AC 136 ms
41,568 KB
testcase_15 AC 137 ms
41,392 KB
testcase_16 AC 138 ms
41,328 KB
testcase_17 AC 144 ms
41,628 KB
testcase_18 AC 139 ms
41,652 KB
testcase_19 AC 138 ms
41,464 KB
testcase_20 AC 135 ms
41,216 KB
testcase_21 AC 137 ms
41,228 KB
testcase_22 AC 140 ms
41,908 KB
testcase_23 AC 145 ms
41,860 KB
testcase_24 AC 143 ms
41,224 KB
testcase_25 AC 142 ms
41,648 KB
testcase_26 AC 141 ms
41,836 KB
testcase_27 AC 138 ms
41,628 KB
testcase_28 AC 139 ms
41,248 KB
testcase_29 AC 139 ms
41,836 KB
testcase_30 AC 139 ms
41,096 KB
testcase_31 AC 152 ms
41,380 KB
testcase_32 AC 148 ms
41,632 KB
testcase_33 AC 144 ms
41,592 KB
testcase_34 AC 135 ms
41,572 KB
testcase_35 AC 135 ms
41,964 KB
testcase_36 AC 138 ms
41,648 KB
testcase_37 AC 136 ms
41,364 KB
testcase_38 AC 140 ms
41,612 KB
testcase_39 AC 136 ms
41,252 KB
testcase_40 AC 130 ms
41,244 KB
testcase_41 AC 141 ms
41,296 KB
testcase_42 AC 144 ms
41,868 KB
testcase_43 AC 139 ms
41,796 KB
testcase_44 AC 126 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

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;
        arr[n + 1] = 100;
        Arrays.sort(arr);
        while (arr[k] == arr[k + 1]) {
            k--;
        }
        System.out.println(k);
    }
}
0