結果

問題 No.443 GCD of Permutation
コンテスト
ユーザー nebukuro09
提出日時 2016-11-11 22:50:52
言語 PyPy2
(7.3.20)
コンパイル:
pypy2 -m py_compile _filename_
実行:
/usr/bin/pypy2 Main.pyc
結果
WA  
実行時間 -
コード長 349 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 58 ms
コンパイル使用メモリ 80,076 KB
実行使用メモリ 82,376 KB
最終ジャッジ日時 2026-07-18 10:50:26
合計ジャッジ時間 3,677 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 16 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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 all(int(d1+d2)%4==0 for d1, d2 in combinations(S, 2)):
    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