結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
60,124 KB
testcase_01 WA -
testcase_02 AC 31 ms
52,688 KB
testcase_03 AC 32 ms
52,328 KB
testcase_04 AC 49 ms
68,868 KB
testcase_05 AC 31 ms
53,808 KB
testcase_06 AC 31 ms
53,108 KB
testcase_07 AC 41 ms
64,100 KB
testcase_08 AC 32 ms
52,860 KB
testcase_09 AC 32 ms
52,400 KB
testcase_10 AC 32 ms
52,464 KB
testcase_11 AC 31 ms
52,896 KB
testcase_12 AC 31 ms
52,596 KB
testcase_13 AC 32 ms
53,316 KB
testcase_14 WA -
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 #

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(1)
        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