結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
5,248 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 75 ms
5,248 KB
testcase_11 WA -
testcase_12 AC 1 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 12 ms
5,248 KB
testcase_17 AC 54 ms
6,272 KB
testcase_18 AC 22 ms
5,248 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

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 min<0 {
		min=0
	}
	Println(max,min)
}
0