結果

問題 No.443 GCD of Permutation
ユーザー Mew_1406Mew_1406
提出日時 2016-11-12 00:21:30
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 250 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 1,630,840 KB
最終ジャッジ日時 2024-11-25 10:41:03
合計ジャッジ時間 35,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from itertools import chain
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