結果

問題 No.1380 Borderline
ユーザー さかぽんさかぽん
提出日時 2021-02-16 23:20:08
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 396 bytes
コンパイル時間 978 ms
コンパイル使用メモリ 109,140 KB
実行使用メモリ 26,756 KB
最終ジャッジ日時 2024-09-13 11:42:49
合計ジャッジ時間 3,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
23,944 KB
testcase_01 AC 27 ms
26,116 KB
testcase_02 AC 26 ms
21,944 KB
testcase_03 AC 28 ms
24,076 KB
testcase_04 AC 27 ms
24,060 KB
testcase_05 AC 26 ms
23,816 KB
testcase_06 AC 28 ms
24,236 KB
testcase_07 RE -
testcase_08 AC 28 ms
25,988 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 29 ms
26,232 KB
testcase_12 AC 28 ms
23,932 KB
testcase_13 AC 28 ms
25,984 KB
testcase_14 AC 32 ms
22,324 KB
testcase_15 AC 33 ms
26,752 KB
testcase_16 AC 32 ms
24,452 KB
testcase_17 AC 33 ms
24,400 KB
testcase_18 AC 32 ms
24,496 KB
testcase_19 AC 32 ms
26,444 KB
testcase_20 AC 32 ms
26,584 KB
testcase_21 AC 32 ms
24,332 KB
testcase_22 AC 32 ms
24,624 KB
testcase_23 AC 32 ms
26,436 KB
testcase_24 AC 32 ms
26,572 KB
testcase_25 AC 32 ms
24,752 KB
testcase_26 AC 32 ms
24,496 KB
testcase_27 AC 32 ms
24,464 KB
testcase_28 AC 32 ms
26,624 KB
testcase_29 AC 32 ms
24,396 KB
testcase_30 AC 32 ms
24,396 KB
testcase_31 AC 33 ms
26,456 KB
testcase_32 AC 32 ms
24,752 KB
testcase_33 AC 32 ms
24,324 KB
testcase_34 AC 32 ms
26,320 KB
testcase_35 AC 32 ms
26,632 KB
testcase_36 AC 32 ms
26,756 KB
testcase_37 AC 32 ms
26,452 KB
testcase_38 AC 32 ms
26,456 KB
testcase_39 AC 32 ms
22,580 KB
testcase_40 AC 32 ms
24,496 KB
testcase_41 AC 32 ms
24,620 KB
testcase_42 AC 31 ms
24,452 KB
testcase_43 AC 31 ms
24,396 KB
testcase_44 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class A
{
	static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse);
	static (int, int) Read2() { var a = Read(); return (a[0], a[1]); }
	static void Main()
	{
		var (n, k) = Read2();
		var p = Read();

		if (n == 1) { Console.WriteLine(1); return; }

		Array.Sort(p);
		Array.Reverse(p);
		while (k > 0 && p[k - 1] == p[k]) k--;
		Console.WriteLine(k);
	}
}
0