結果
| 問題 |
No.182 新規性の虜
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-07 18:40:04 |
| 言語 | Python2 (2.7.18) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 147 bytes |
| コンパイル時間 | 65 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-09-21 21:33:57 |
| 合計ジャッジ時間 | 6,827 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 TLE * 1 -- * 21 |
ソースコード
#coding: utf-8 ##yuki_182 n=int(raw_input()) s=[] s=raw_input().split() cnt=0 for i in xrange(len(s)): if s.count(s[i])==1: cnt+=1 print cnt