結果

問題 No.1692 Expectations
ユーザー ID 21712ID 21712
提出日時 2024-12-11 01:36:58
言語 Go
(1.22.1)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 11,102 ms
コンパイル使用メモリ 222,060 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-11 01:37:13
合計ジャッジ時間 13,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 72 ms
5,248 KB
testcase_11 AC 74 ms
5,248 KB
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 AC 102 ms
10,496 KB
testcase_16 AC 11 ms
5,248 KB
testcase_17 AC 53 ms
6,400 KB
testcase_18 AC 21 ms
5,248 KB
testcase_19 AC 123 ms
10,368 KB
testcase_20 AC 100 ms
10,112 KB
testcase_21 AC 114 ms
10,368 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)
	min:=0
	if n==m && len(t) == 1 {
		min = 1
	}
	Println(max,min)
}
0