結果

問題 No.171 スワップ文字列(Med)
ユーザー nebukuro09nebukuro09
提出日時 2016-09-21 15:19:53
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 669 ms
コンパイル使用メモリ 76,680 KB
実行使用メモリ 79,508 KB
最終ジャッジ日時 2024-11-17 10:24:04
合計ジャッジ時間 2,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
77,312 KB
testcase_01 AC 93 ms
77,824 KB
testcase_02 AC 137 ms
78,976 KB
testcase_03 AC 90 ms
77,824 KB
testcase_04 AC 90 ms
78,524 KB
testcase_05 WA -
testcase_06 AC 131 ms
78,884 KB
testcase_07 AC 142 ms
78,780 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 87 ms
77,820 KB
testcase_11 AC 86 ms
77,696 KB
testcase_12 AC 88 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import operator
MOD = 573

def gcd(a, b):
    while b:
        a, b = b, a%b
    return a

c = Counter(raw_input()).values()
bunbo = range(sum(c), 0, -1)
for n in c:
    for m in xrange(1, n+1):
        p = 0
        while m > 1:
            cd = gcd(m, bunbo[p])
            if cd > 1:
                bunbo[p] /= cd
                m /= cd
            p += 1

ans = 1
for b in bunbo:
    ans = ans * b % MOD
print ans-1
0