結果

問題 No.443 GCD of Permutation
ユーザー compass19
提出日時 2016-11-11 23:44:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 698 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-25 09:47:01
合計ジャッジ時間 7,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 9 WA * 4 RE * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

def c_number(N):
	n=0
	for i in range(len(N)):
		n+=N[i]*(10**i)
	return n
def gcd(a, b):
	while b:
		a, b = b, a % b
	return a
N=list(map(int,list(input())))
if len(N) == 2:
	print(gcd(c_number(N), c_number(N[::-1]))); exit()
n=set(N)
if len(n)==1: print(c_number(N)); exit()
if len(n)==2 and N.count(0)==len(N)-1:
	print(c_number(sorted(N,reverse=True)));exit()
if len(N)-N.count(0) == 2:
	n=list(n-{0})
	print(gcd(c_number([n[0],n[1]]), c_number([n[1],n[0]])));exit()
s=c_number(N)
if s//9 != s/9:
	if s//3 != s/3:
		print(1);exit()
	else:
		print(3);exit()
min_diff=10
for i in n:
	for j in n-{i}:
		if max(i-j,j-i)<min_diff:
			min_diff = max(i-j,j-1)
			s=(i,j)

print((max(i,j)-min(i,j))*9)
0