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