結果
| 問題 | No.443 GCD of Permutation | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2016-11-11 23:24:51 | 
| 言語 | Python2 (2.7.18) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 517 bytes | 
| コンパイル時間 | 193 ms | 
| コンパイル使用メモリ | 6,912 KB | 
| 実行使用メモリ | 6,824 KB | 
| 最終ジャッジ日時 | 2024-11-25 09:30:41 | 
| 合計ジャッジ時間 | 1,376 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 19 WA * 9 | 
ソースコード
from itertools import combinations
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:
    print sorted(list(S))[1]
    exit()
if 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
            
            
            
        