結果

問題 No.443 GCD of Permutation
ユーザー Mew_1406Mew_1406
提出日時 2016-11-11 23:57:10
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 209 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 1,630,720 KB
最終ジャッジ日時 2024-11-25 10:25:37
合計ジャッジ時間 39,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 19 ms
14,756 KB
testcase_02 MLE -
testcase_03 AC 20 ms
15,012 KB
testcase_04 MLE -
testcase_05 AC 20 ms
14,624 KB
testcase_06 MLE -
testcase_07 AC 20 ms
14,752 KB
testcase_08 AC 19 ms
14,756 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 AC 19 ms
7,936 KB
testcase_13 AC 19 ms
8,064 KB
testcase_14 MLE -
testcase_15 TLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 TLE -
testcase_20 MLE -
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 fractions import gcd
from itertools import permutations
st=raw_input()
lst=[]
for l in list(permutations(st,len(st))):
    lst.append(reduce(lambda x,y: x+y,l).lstrip("0"))
print reduce(gcd, map(int,lst))
0