結果
問題 | No.182 新規性の虜 |
ユーザー | Hachimori |
提出日時 | 2015-04-16 23:26:57 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 139 ms / 5,000 ms |
コード長 | 449 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 14,608 KB |
最終ジャッジ日時 | 2024-12-26 18:45:49 |
合計ジャッジ時間 | 3,050 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
#!/usr/bin/env python #coding:utf8 def read(): raw_input() return map(int, raw_input().split()) def work(vList): vList.sort() ans = 0 idx = 0 while idx < len(vList): if idx == len(vList) - 1 or vList[idx] != vList[idx + 1]: ans += 1 while idx + 1 < len(vList) and vList[idx] == vList[idx + 1]: idx += 1 idx += 1 print ans if __name__ == "__main__": work(read())