結果

問題 No.182 新規性の虜
ユーザー kat0rikkat0rik
提出日時 2020-02-03 19:27:23
言語 Go
(1.22.1)
結果
AC  
実行時間 25 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 11,796 ms
コンパイル使用メモリ 223,004 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-09-19 05:07:49
合計ジャッジ時間 13,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 25 ms
7,040 KB
testcase_10 AC 22 ms
6,912 KB
testcase_11 AC 19 ms
6,912 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 9 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 23 ms
7,296 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
evil01.txt AC 25 ms
7,296 KB
evil02.txt AC 24 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
)

func nextInt(sc *bufio.Scanner) int {
	sc.Scan()
	t, _ := strconv.Atoi(sc.Text())
	return t
}

func main() {
	sc := bufio.NewScanner(os.Stdin)
	sc.Split(bufio.ScanWords)
	N := nextInt(sc)
	A := make(map[int]int, 0)
	for i := 0; i < N; i++ {
		A[nextInt(sc)]++
	}
	ans := 0
	for _, v := range A {
		if v == 1 {
			ans++
		}
	}
	fmt.Println(ans)
}
0