結果

問題 No.443 GCD of Permutation
ユーザー Mew_1406Mew_1406
提出日時 2016-11-12 00:20:29
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 222 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 815,104 KB
最終ジャッジ日時 2024-05-04 03:57:16
合計ジャッジ時間 3,345 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
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 #

from fractions import gcd
from itertools import permutations
st=raw_input()
lst=[]
for l in list(permutations(st,len(st))):
    lst.append( ''.join(list(chain.from_iterable(l))).lstrip("0"))
print reduce(gcd, map(int,lst))
0