結果

問題 No.1380 Borderline
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-05 09:50:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 3,396 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-10-06 05:02:37
合計ジャッジ時間 10,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,308 KB
testcase_01 AC 121 ms
54,176 KB
testcase_02 AC 117 ms
54,052 KB
testcase_03 AC 125 ms
54,080 KB
testcase_04 AC 116 ms
54,232 KB
testcase_05 AC 107 ms
52,964 KB
testcase_06 AC 124 ms
53,872 KB
testcase_07 AC 110 ms
53,268 KB
testcase_08 AC 124 ms
54,224 KB
testcase_09 AC 110 ms
52,828 KB
testcase_10 AC 116 ms
54,488 KB
testcase_11 AC 115 ms
53,960 KB
testcase_12 AC 116 ms
54,164 KB
testcase_13 AC 121 ms
54,032 KB
testcase_14 AC 136 ms
54,116 KB
testcase_15 AC 138 ms
54,352 KB
testcase_16 AC 130 ms
54,292 KB
testcase_17 AC 128 ms
54,436 KB
testcase_18 AC 130 ms
54,268 KB
testcase_19 AC 132 ms
54,408 KB
testcase_20 AC 133 ms
54,384 KB
testcase_21 AC 137 ms
54,300 KB
testcase_22 AC 132 ms
54,184 KB
testcase_23 AC 135 ms
54,084 KB
testcase_24 AC 133 ms
54,100 KB
testcase_25 AC 127 ms
54,184 KB
testcase_26 AC 135 ms
54,168 KB
testcase_27 AC 141 ms
54,220 KB
testcase_28 AC 139 ms
54,300 KB
testcase_29 AC 133 ms
54,220 KB
testcase_30 AC 134 ms
54,060 KB
testcase_31 AC 128 ms
54,476 KB
testcase_32 AC 136 ms
54,272 KB
testcase_33 AC 138 ms
54,480 KB
testcase_34 AC 132 ms
54,008 KB
testcase_35 AC 129 ms
54,128 KB
testcase_36 AC 133 ms
54,216 KB
testcase_37 AC 132 ms
54,064 KB
testcase_38 AC 138 ms
54,220 KB
testcase_39 AC 142 ms
54,120 KB
testcase_40 AC 133 ms
54,284 KB
testcase_41 AC 135 ms
54,488 KB
testcase_42 AC 130 ms
54,348 KB
testcase_43 AC 134 ms
54,156 KB
testcase_44 AC 117 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

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 (n ==k) {
	    			System.out.println(k);
	    			break;
	    		}
	    		if (pi[i - 1] != pi[i]) {
	    			System.out.println(n - i);
	    			break;
	    		}
	    		if (i == n - 1) {System.out.println(0);}
	    	}

	    	}

	    }
0