結果
問題 | No.182 新規性の虜 |
ユーザー |
|
提出日時 | 2015-09-10 01:09:00 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 193 bytes |
コンパイル時間 | 47 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 24,432 KB |
最終ジャッジ日時 | 2024-07-19 05:10:51 |
合計ジャッジ時間 | 1,733 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 13 WA * 14 |
ソースコード
N = int(raw_input()) input = raw_input().strip().split() ans = {} for i in range(N): if ans.has_key(input[i]): ans[i] += 1 else: ans[i] = 1 print ans.values().count(1)