結果

問題 No.171 スワップ文字列(Med)
ユーザー しらっ亭しらっ亭
提出日時 2015-09-18 01:57:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 195 ms / 1,000 ms
コード長 501 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 67,968 KB
最終ジャッジ日時 2024-07-19 06:53:27
合計ジャッジ時間 1,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,368 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 80 ms
25,344 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 54 ms
18,176 KB
testcase_06 AC 120 ms
37,760 KB
testcase_07 AC 172 ms
59,648 KB
testcase_08 AC 195 ms
67,968 KB
testcase_09 AC 192 ms
67,968 KB
testcase_10 AC 25 ms
10,496 KB
testcase_11 AC 24 ms
10,496 KB
testcase_12 AC 25 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def combi(n):
    c = [[0 for i in range(n + 1)] for j in range(n + 1)]
    for x in range(n + 1):
        c[x][0] = 1
        for y in range(1, x + 1):
            c[x][y] = (c[x - 1][y] + c[x - 1][y - 1])
    return c


def solve():
    S = input()
    L = len(S)

    mod = 573

    C = combi(L)

    co = Counter(S)

    ans = 1

    for n in co.values():
        ans *= C[L][n]
        L -= n

    print((ans - 1) % mod)


if __name__ == '__main__':
    solve()
0