結果

問題 No.170 スワップ文字列(Easy)
ユーザー ntudantuda
提出日時 2023-12-27 23:54:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 210 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 55,720 KB
最終ジャッジ日時 2024-09-27 15:36:36
合計ジャッジ時間 1,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,148 KB
testcase_01 AC 40 ms
55,720 KB
testcase_02 AC 36 ms
54,824 KB
testcase_03 AC 36 ms
54,408 KB
testcase_04 AC 36 ms
54,424 KB
testcase_05 AC 36 ms
54,016 KB
testcase_06 AC 38 ms
54,284 KB
testcase_07 AC 37 ms
54,080 KB
testcase_08 AC 38 ms
54,580 KB
testcase_09 AC 36 ms
55,424 KB
testcase_10 AC 37 ms
54,412 KB
testcase_11 AC 34 ms
53,808 KB
testcase_12 AC 37 ms
54,516 KB
testcase_13 AC 36 ms
54,352 KB
testcase_14 AC 36 ms
54,752 KB
testcase_15 AC 37 ms
53,804 KB
testcase_16 AC 37 ms
53,972 KB
testcase_17 AC 37 ms
53,952 KB
testcase_18 AC 37 ms
55,060 KB
testcase_19 AC 36 ms
54,640 KB
testcase_20 AC 37 ms
54,256 KB
testcase_21 AC 36 ms
53,540 KB
testcase_22 AC 37 ms
54,864 KB
testcase_23 AC 36 ms
54,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
S = input()
from collections import defaultdict
dic = defaultdict(int)
for s in S:
    dic[s] += 1
ans = factorial(len(S))
for v in dic.values():
    ans //= factorial(v)
print(ans-1)
0