結果
問題 |
No.182 新規性の虜
|
ユーザー |
|
提出日時 | 2018-12-07 11:15:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 163 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 22,604 KB |
最終ジャッジ日時 | 2024-09-14 03:18:23 |
合計ジャッジ時間 | 2,454 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 27 |
ソースコード
n = input() inp = input().split() dic = {} for i in inp: if i not in dic: dic[i] = 1 else: dic[i] += 1 print(sum(dic.values(1)))