結果

問題 No.171 スワップ文字列(Med)
ユーザー ntudantuda
提出日時 2024-12-23 22:45:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 1,000 ms
コード長 772 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-12-23 22:45:41
合計ジャッジ時間 1,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,376 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 68 ms
67,840 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 44 ms
53,632 KB
testcase_05 AC 53 ms
61,440 KB
testcase_06 AC 73 ms
69,120 KB
testcase_07 AC 87 ms
73,344 KB
testcase_08 AC 88 ms
74,368 KB
testcase_09 AC 84 ms
73,344 KB
testcase_10 AC 43 ms
53,632 KB
testcase_11 AC 45 ms
53,888 KB
testcase_12 AC 44 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def prime_factorize(n):
    dic0 = defaultdict(int)
    while n % 2 == 0:
        dic0[2] += 1
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            dic0[f] += 1
            n //= f
        else:
            f += 2
    if n != 1:
        dic0[n] += 1
    return dic0


S = input()
N = len(S)
dic2 = defaultdict(int)
for i in range(2, N + 1):
    for k, v in prime_factorize(i).items():
        dic2[k] += v

dic = defaultdict(int)
for s in S:
    dic[s] += 1

for v0 in dic.values():
    for i in range(2, v0 + 1):
        for k, v in prime_factorize(i).items():
            dic2[k] -= v

ans = 1
for k, v in dic2.items():
    for i in range(v):
        ans *= k
        ans %= 573
print((ans - 1) % 573)
0