結果

問題 No.171 スワップ文字列(Med)
ユーザー rlangevinrlangevin
提出日時 2023-08-29 12:07:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 1,000 ms
コード長 759 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 72,448 KB
最終ジャッジ日時 2024-06-09 21:00:49
合計ジャッジ時間 1,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,656 KB
testcase_01 AC 38 ms
54,272 KB
testcase_02 AC 59 ms
70,656 KB
testcase_03 AC 37 ms
55,040 KB
testcase_04 AC 36 ms
54,784 KB
testcase_05 AC 45 ms
63,872 KB
testcase_06 AC 56 ms
69,888 KB
testcase_07 AC 61 ms
71,936 KB
testcase_08 AC 63 ms
72,448 KB
testcase_09 AC 65 ms
72,320 KB
testcase_10 AC 36 ms
55,040 KB
testcase_11 AC 37 ms
54,272 KB
testcase_12 AC 38 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5 // 1)) + 1):
        if temp % i == 0:
            cnt = 0
            while temp % i == 0:
                cnt += 1
                temp //= i
            arr.append([i, cnt])
 
    if temp != 1:
        arr.append([temp, 1])

    return arr

S = [ord(s) - ord("A") for s in input()]
N = len(S)
C = Counter(S)
M = 1005
L = [0] * M
for i in range(N, 1, -1):
    for k, v in factorization(i):
        L[k] += v

for _, v1 in C.items():
    for i in range(v1, 1, -1):
        for k, v in factorization(i):
            L[k] -= v

mod = 573
ans = 1
for i in range(2, M):
    for j in range(L[i]):
        ans *= i
        ans %= mod

print((ans-1)%mod)
0