結果

問題 No.443 GCD of Permutation
ユーザー ebicochinealebicochineal
提出日時 2016-11-12 00:30:21
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 808 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 164,920 KB
最終ジャッジ日時 2024-05-04 03:59:24
合計ジャッジ時間 3,459 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
59,548 KB
testcase_01 AC 32 ms
52,876 KB
testcase_02 AC 34 ms
52,220 KB
testcase_03 AC 36 ms
52,828 KB
testcase_04 AC 52 ms
68,040 KB
testcase_05 AC 32 ms
53,024 KB
testcase_06 AC 33 ms
53,228 KB
testcase_07 AC 43 ms
64,092 KB
testcase_08 AC 33 ms
52,188 KB
testcase_09 AC 32 ms
52,336 KB
testcase_10 AC 32 ms
52,600 KB
testcase_11 AC 33 ms
54,128 KB
testcase_12 AC 33 ms
51,872 KB
testcase_13 AC 32 ms
52,460 KB
testcase_14 AC 33 ms
53,404 KB
testcase_15 RE -
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#! /usr/bin/env python3

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

gs = set([])
ga = 0
def p(s, ss):
    global ga
    if s == '':
        a = int(ss)
        gs.add(a)
        ga = a
    for i in set(s):
        p(s.replace(i, '', 1), ss+i)

def main():
    l = input()
    if len(set(l)) == 1:
        print(l)
        return
    
    s = set([])
    p(l,'')
    a = f(ga)
    for i in gs:
        a = g(a, i)
    ans = 1
    for i in a:
        ans *= i
    print(ans)

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