結果

問題 No.2777 Wild Flush
ユーザー ID 21712ID 21712
提出日時 2024-11-06 17:00:58
言語 Go
(1.22.1)
結果
AC  
実行時間 692 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 14,376 ms
コンパイル使用メモリ 220,456 KB
実行使用メモリ 7,956 KB
最終ジャッジ日時 2024-11-06 17:01:25
合計ジャッジ時間 23,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 247 ms
7,828 KB
testcase_10 AC 260 ms
7,828 KB
testcase_11 AC 249 ms
7,828 KB
testcase_12 AC 643 ms
7,956 KB
testcase_13 AC 680 ms
7,828 KB
testcase_14 AC 650 ms
7,956 KB
testcase_15 AC 692 ms
7,956 KB
testcase_16 AC 54 ms
6,820 KB
testcase_17 AC 610 ms
7,832 KB
testcase_18 AC 450 ms
7,836 KB
testcase_19 AC 423 ms
7,836 KB
testcase_20 AC 154 ms
6,816 KB
testcase_21 AC 93 ms
6,820 KB
testcase_22 AC 413 ms
7,840 KB
testcase_23 AC 375 ms
7,836 KB
testcase_24 AC 454 ms
7,836 KB
testcase_25 AC 671 ms
7,832 KB
testcase_26 AC 569 ms
7,828 KB
testcase_27 AC 309 ms
6,816 KB
testcase_28 AC 89 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var n,k int
	Scan(&n,&k)
	m:=make([]int,n+1)
	for _=range m[1:] {
		var a int
		Scan(&a)
		m[a]++
	}
	for _,x:=range m[1:] {
		if x+m[0]>=k {
			Println("Yes")
			return
		}
	}
	Println("No")
}
0