結果

問題 No.182 新規性の虜
ユーザー k.hk.h
提出日時 2019-08-04 16:06:42
言語 Go
(1.22.1)
結果
AC  
実行時間 875 ms / 5,000 ms
コード長 244 bytes
コンパイル時間 11,457 ms
コンパイル使用メモリ 219,704 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-08 09:32:01
合計ジャッジ時間 20,602 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 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 2 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 532 ms
7,808 KB
testcase_09 AC 875 ms
10,376 KB
testcase_10 AC 786 ms
9,944 KB
testcase_11 AC 642 ms
9,432 KB
testcase_12 AC 262 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 2 ms
5,376 KB
testcase_18 AC 399 ms
6,016 KB
testcase_19 AC 271 ms
5,632 KB
testcase_20 AC 161 ms
5,376 KB
testcase_21 AC 432 ms
6,016 KB
testcase_22 AC 219 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 628 ms
11,008 KB
testcase_25 AC 227 ms
6,016 KB
testcase_26 AC 112 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
evil01.txt AC 1,035 ms
11,744 KB
evil02.txt AC 1,014 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

func main() {
	var N, rlt int
	var s string
	fmt.Scan(&N)
	m := make(map[string]int)
	for i := 0; i < N; i++ {
		fmt.Scan(&s)
		m[s]++
	}
	for _, v := range m {
		if v == 1 {
			rlt++
		}
	}
	fmt.Println(rlt)
}
0