結果

問題 No.443 GCD of Permutation
ユーザー nebukuro09nebukuro09
提出日時 2016-11-11 22:50:52
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-05-04 02:51:07
合計ジャッジ時間 2,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 13 ms
6,272 KB
testcase_02 AC 13 ms
6,400 KB
testcase_03 AC 12 ms
6,400 KB
testcase_04 AC 12 ms
6,400 KB
testcase_05 AC 12 ms
6,400 KB
testcase_06 AC 11 ms
6,400 KB
testcase_07 AC 12 ms
6,400 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 13 ms
6,528 KB
testcase_13 WA -
testcase_14 AC 14 ms
6,272 KB
testcase_15 AC 16 ms
6,400 KB
testcase_16 WA -
testcase_17 AC 15 ms
6,400 KB
testcase_18 AC 21 ms
6,400 KB
testcase_19 AC 13 ms
6,144 KB
testcase_20 AC 19 ms
6,400 KB
testcase_21 AC 13 ms
6,272 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 21 ms
6,272 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 16 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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