結果

問題 No.182 新規性の虜
ユーザー tsuchinagatsuchinaga
提出日時 2019-02-20 14:48:44
言語 Go
(1.22.1)
結果
AC  
実行時間 890 ms / 5,000 ms
コード長 259 bytes
コンパイル時間 13,972 ms
コンパイル使用メモリ 228,384 KB
実行使用メモリ 9,588 KB
最終ジャッジ日時 2024-11-06 20:51:32
合計ジャッジ時間 20,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 543 ms
7,028 KB
testcase_09 AC 890 ms
9,588 KB
testcase_10 AC 778 ms
9,584 KB
testcase_11 AC 643 ms
9,456 KB
testcase_12 AC 264 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 397 ms
7,832 KB
testcase_19 AC 286 ms
6,824 KB
testcase_20 AC 175 ms
6,816 KB
testcase_21 AC 455 ms
7,836 KB
testcase_22 AC 221 ms
6,816 KB
testcase_23 AC 1 ms
6,820 KB
testcase_24 AC 662 ms
9,108 KB
testcase_25 AC 236 ms
7,836 KB
testcase_26 AC 113 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
evil01.txt AC 1,058 ms
9,580 KB
evil02.txt AC 1,050 ms
9,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

func main() {
	var n, a int
	_, _ = fmt.Scan(&n)

	nums := make(map[int]int, 0)
	for i := 0; i < n; i++ {
		_, _ = fmt.Scan(&a)
		nums[a]++
	}

	cnt := 0
	for _, c := range nums {
		if c == 1 {
			cnt++
		}
	}

	fmt.Println(cnt)
}
0