結果

問題 No.1380 Borderline
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-05 09:48:15
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 593 bytes
コンパイル時間 3,657 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 54,748 KB
最終ジャッジ日時 2024-10-06 04:58:48
合計ジャッジ時間 11,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,124 KB
testcase_01 AC 133 ms
53,956 KB
testcase_02 AC 132 ms
54,088 KB
testcase_03 AC 130 ms
54,144 KB
testcase_04 AC 133 ms
54,264 KB
testcase_05 RE -
testcase_06 AC 130 ms
54,180 KB
testcase_07 RE -
testcase_08 AC 130 ms
54,748 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 130 ms
54,152 KB
testcase_12 AC 130 ms
53,820 KB
testcase_13 AC 129 ms
54,228 KB
testcase_14 AC 145 ms
54,384 KB
testcase_15 AC 143 ms
54,176 KB
testcase_16 AC 163 ms
54,216 KB
testcase_17 AC 147 ms
54,412 KB
testcase_18 AC 144 ms
54,264 KB
testcase_19 AC 143 ms
54,400 KB
testcase_20 AC 144 ms
54,300 KB
testcase_21 AC 146 ms
54,332 KB
testcase_22 AC 170 ms
54,460 KB
testcase_23 AC 145 ms
54,240 KB
testcase_24 AC 144 ms
54,108 KB
testcase_25 AC 143 ms
54,200 KB
testcase_26 AC 144 ms
54,268 KB
testcase_27 AC 142 ms
54,252 KB
testcase_28 AC 142 ms
53,964 KB
testcase_29 AC 141 ms
54,356 KB
testcase_30 AC 142 ms
54,164 KB
testcase_31 AC 145 ms
54,164 KB
testcase_32 AC 142 ms
53,956 KB
testcase_33 AC 145 ms
54,160 KB
testcase_34 AC 148 ms
54,304 KB
testcase_35 AC 146 ms
54,208 KB
testcase_36 AC 145 ms
54,416 KB
testcase_37 AC 142 ms
54,388 KB
testcase_38 AC 144 ms
54,088 KB
testcase_39 AC 148 ms
54,184 KB
testcase_40 AC 145 ms
54,196 KB
testcase_41 AC 144 ms
54,076 KB
testcase_42 AC 163 ms
54,392 KB
testcase_43 AC 149 ms
54,216 KB
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	int n = sc.nextInt();
	    	int k = sc.nextInt();
	    	int[] pi = new int[n];

	    	for (int i=0; i < n; i ++) {
	    		pi[i] = sc.nextInt();
	    	}
	    	sc.close();
	    	Arrays.sort(pi);

	    	for (int i = n - k; i  < n ; i ++) {
	    		if (pi[i - 1] != pi[i]) {
	    			System.out.println(n - i);
	    			break;
	    		}
	    		if (i == n - 1) {System.out.println(0);}
	    	}

	    	}

	    }
0