結果
問題 | No.182 新規性の虜 |
ユーザー | yuki2006 |
提出日時 | 2015-04-15 18:59:43 |
言語 | Go1.4 (1.4.2) |
結果 |
AC
|
実行時間 | 45 ms / 5,000 ms |
コード長 | 948 bytes |
コンパイル時間 | 2,623 ms |
コンパイル使用メモリ | 33,920 KB |
実行使用メモリ | 7,808 KB |
最終ジャッジ日時 | 2024-06-08 12:57:39 |
合計ジャッジ時間 | 3,952 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 27 ms
5,376 KB |
testcase_09 | AC | 45 ms
7,808 KB |
testcase_10 | AC | 40 ms
7,552 KB |
testcase_11 | AC | 35 ms
7,296 KB |
testcase_12 | AC | 14 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 | 20 ms
5,376 KB |
testcase_19 | AC | 14 ms
5,376 KB |
testcase_20 | AC | 10 ms
5,376 KB |
testcase_21 | AC | 23 ms
5,376 KB |
testcase_22 | AC | 11 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 42 ms
7,680 KB |
testcase_25 | AC | 15 ms
5,376 KB |
testcase_26 | AC | 7 ms
5,376 KB |
testcase_27 | AC | 0 ms
5,376 KB |
evil01.txt | AC | 50 ms
8,192 KB |
evil02.txt | AC | 48 ms
8,192 KB |
ソースコード
package main import ( "bufio" "os" "strconv" "math/rand" "fmt" "strings" ) var s = bufio.NewScanner(os.Stdin) func next() string { s.Split(bufio.ScanWords) s.Scan() return s.Text() } func nextLine() string { s.Split(bufio.ScanLines) s.Scan() if nil != s.Err() { panic(s.Err()) } return s.Text() } func nextInt() int { i, e := strconv.Atoi(next()) if e != nil { panic(e) } return i } func randInt(a int , b int) int { return rand.Intn(b - a + 1) + a } func mapToString(arr []int) []string { ret := make([]string, len(arr)) for i := 0; i < len(arr); i++ { ret[i] = strconv.Itoa(arr[i]) } return ret } func PrintI(args ...int) { fmt.Println(strings.Join(mapToString(args), " ")) } func main() { N := nextInt() A := make([]int, N) var set = map[int]int{} for i := 0; i < N; i++ { A[i] = nextInt() set[A[i]] +=1 } var ans = 0 for _, v := range set { if v == 1 { ans++ } } PrintI(ans) }