結果

問題 No.443 GCD of Permutation
ユーザー nebukuro09nebukuro09
提出日時 2016-11-12 00:14:28
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 718 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-05-04 03:54:33
合計ジャッジ時間 1,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
8,064 KB
testcase_01 AC 25 ms
8,060 KB
testcase_02 AC 25 ms
8,064 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 23 ms
8,064 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 23 ms
8,060 KB
testcase_09 AC 25 ms
8,192 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 24 ms
8,064 KB
testcase_15 AC 23 ms
8,060 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 23 ms
8,064 KB
testcase_29 WA -
testcase_30 RE -
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations, permutations
from fractions import gcd

N = raw_input()


if all(d==N[0] for d in N):
    print N
    exit()

ans = 1
S = set(N)

if len(S) == 2 and '0' in S:
    m = sorted(list(S))[1]
    if N.count(m)%3 == 0:
        print int(m)*3
    else:
        print m
    exit()

if all(int(d)%3 == 0 and sum(int(d) for d in N)%27 == 0):
    print 27
    exit()


elif all(int(d1+d2)%4==0 and int(d2+d1)%4 == 0 for d1, d2 in combinations(S, 2)):
    if all(N.count(i) < 2 or int(i+i) % 4 == 0 for i in '0123456789'):
        ans *= 4
elif all(int(d)%2==0 for d in S):
    ans *= 2

if sum(int(d) for d in N)%9 == 0:
    ans *= 9
elif sum(int(d) for d in N)%3 == 0:
    ans *= 3

print ans
0