結果

問題 No.1692 Expectations
ユーザー ID 21712ID 21712
提出日時 2024-12-11 01:35:29
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 13,196 ms
コンパイル使用メモリ 221,728 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-11 01:35:46
合計ジャッジ時間 15,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 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 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 76 ms
5,248 KB
testcase_11 AC 78 ms
5,248 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 13 ms
5,248 KB
testcase_15 AC 113 ms
10,496 KB
testcase_16 AC 13 ms
5,248 KB
testcase_17 AC 57 ms
6,400 KB
testcase_18 AC 24 ms
5,248 KB
testcase_19 AC 135 ms
10,240 KB
testcase_20 AC 144 ms
9,984 KB
testcase_21 AC 128 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 len(t) == 1 {
		min = 1
	}
	Println(max,min)
}
0