結果

問題 No.443 GCD of Permutation
ユーザー ebicochinealebicochineal
提出日時 2016-11-12 00:02:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 652 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 146,768 KB
最終ジャッジ日時 2024-11-25 10:32:19
合計ジャッジ時間 17,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
65,672 KB
testcase_01 AC 39 ms
133,128 KB
testcase_02 AC 39 ms
59,952 KB
testcase_03 AC 42 ms
134,540 KB
testcase_04 AC 63 ms
82,848 KB
testcase_05 AC 39 ms
60,576 KB
testcase_06 AC 39 ms
59,088 KB
testcase_07 AC 45 ms
141,068 KB
testcase_08 AC 39 ms
60,192 KB
testcase_09 AC 42 ms
146,768 KB
testcase_10 AC 38 ms
59,692 KB
testcase_11 AC 42 ms
134,888 KB
testcase_12 AC 38 ms
60,432 KB
testcase_13 AC 38 ms
52,776 KB
testcase_14 RE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 RE -
testcase_19 TLE -
testcase_20 RE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 844 ms
75,992 KB
testcase_24 TLE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

def f(n):
    l = []
    a, b = 0, 2
    while b * b <= n:
        if n % b == 0:
            n //= b
            l += [b]
        else:
            b += 1 + a
            a = 1
    if n > 1 : l += [n]
    return [1] + l

def g(a, b):
    r = []
    for i in a:
        if b % i == 0:
            r += [i]
            b //= i
    return r

def main():
    l = input()
    s = set([])
    a = 0
    for i in itertools.permutations(l, len(l)):
        a = int(''.join(i))
        s.add(a)
    a = f(a)
    for i in s:
        a = g(a, i)
    ans = 1
    for i in a:
        ans *= i
    print(ans)

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