結果
問題 |
No.182 新規性の虜
|
ユーザー |
|
提出日時 | 2015-08-03 17:35:38 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 317 bytes |
コンパイル時間 | 109 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 20,084 KB |
最終ジャッジ日時 | 2024-07-18 01:07:24 |
合計ジャッジ時間 | 7,606 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 TLE * 1 -- * 21 |
ソースコード
#coding=UTF-8 N=int(input()) mojir=input() hyo=mojir.split(" ") #真面目にチェックしていくか ans=0 for idx in range(0,N,1): sinkip=True for idy in range(0,N,1): if hyo[idx]==hyo[idy] and idx != idy: sinkip=False break if sinkip: ans=ans+1 print(ans)