結果

問題 No.1692 Expectations
ユーザー ID 21712ID 21712
提出日時 2024-12-11 01:28:29
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 11,055 ms
コンパイル使用メモリ 243,984 KB
実行使用メモリ 10,712 KB
最終ジャッジ日時 2024-12-11 01:28:44
合計ジャッジ時間 12,854 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
5,248 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 73 ms
5,248 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 11 ms
5,248 KB
testcase_15 WA -
testcase_16 AC 11 ms
5,248 KB
testcase_17 AC 50 ms
6,400 KB
testcase_18 AC 22 ms
5,248 KB
testcase_19 WA -
testcase_20 AC 100 ms
10,112 KB
testcase_21 AC 113 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n,m int
	Fscan(rd,&n,&m)
	a:=make([]int,n)
	t:=map[int]bool{}
	for i:=range a {
		Fscan(rd,&a[i])
		t[a[i]]=true
	}
	max:=len(t)
	rem:=m-max
	min:=n-rem
	if max < min {
		min = max
	}
	if min<0 || max==n {
		min=0
	}
	Println(max,min)
}
0