結果

問題 No.443 GCD of Permutation
ユーザー pekempeypekempey
提出日時 2016-11-19 20:16:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 256 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-10-14 00:01:38
合計ジャッジ時間 2,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 4
other RE * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
from itertools import product
from fractions import gcd

N = int(input())
s = list(map(int, set(str(N))))

if len(s) == 1:
	print(N)
else:
	diff = [9 * abs(x - y) for x, y in product(s, s)]
	print(gcd(N, reduce(gcd, diff, 0)))
0