結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
tookunn_1213
|
| 提出日時 | 2015-06-06 19:43:27 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 119 bytes |
| 記録 | |
| コンパイル時間 | 68 ms |
| コンパイル使用メモリ | 80,640 KB |
| 実行使用メモリ | 89,984 KB |
| 最終ジャッジ日時 | 2026-07-17 16:25:18 |
| 合計ジャッジ時間 | 31,845 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 TLE * 1 -- * 5 |
ソースコード
N = int(raw_input()) A = map(int,raw_input().split()) c = 0 for i in range(N): if A.count(A[i]) == 1: c += 1 print c
tookunn_1213