結果
問題 |
No.171 スワップ文字列(Med)
|
ユーザー |
|
提出日時 | 2015-08-22 12:59:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 318 bytes |
コンパイル時間 | 278 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 800,924 KB |
最終ジャッジ日時 | 2024-07-18 12:43:52 |
合計ジャッジ時間 | 2,716 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 3 |
other | AC * 1 WA * 1 MLE * 1 -- * 7 |
ソースコード
import itertools S = input() dic = dict() for c in S: if c not in dic: dic.update({c:1}) else: dic[c] += 1 length = len(S) res = 1 vs = [i for i in dic.values()] vs.sort() vs = vs[::-1] for i in vs: res *= len(list(itertools.combinations(range(length), i))) length -= i print(res-1)