結果

問題 No.443 GCD of Permutation
ユーザー nola_suznola_suz
提出日時 2016-11-11 22:58:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 541 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 86,500 KB
最終ジャッジ日時 2024-11-25 09:14:16
合計ジャッジ時間 3,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
56,012 KB
testcase_02 AC 42 ms
55,104 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 42 ms
54,336 KB
testcase_06 AC 43 ms
55,532 KB
testcase_07 AC 42 ms
55,100 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 41 ms
54,248 KB
testcase_11 WA -
testcase_12 AC 42 ms
54,064 KB
testcase_13 AC 43 ms
54,548 KB
testcase_14 RE -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 53 ms
66,524 KB
testcase_18 AC 86 ms
77,580 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 46 ms
53,836 KB
testcase_25 AC 87 ms
76,760 KB
testcase_26 AC 82 ms
76,796 KB
testcase_27 WA -
testcase_28 AC 67 ms
76,720 KB
testcase_29 RE -
testcase_30 AC 99 ms
76,288 KB
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
n = input()
nn = len(n)
a = []
for i in n:
	a.append(i)
a.sort()
b = 0
for i in a:
	b *= 10
	b += int(i)
# print(b)
a.sort(reverse=True)
c = 0
for i in a:
	c *= 10
	c += int(i)
# print(c)

def gcd(a, b):
	if a == 0:
		return b
	if b == 0:
		return a
	return gcd(b, a%b)

ans = gcd(b, c)
print(ans)
# for i in range(30):
# 	for j in range(100):
# 		aa = random.randint(0, nn-1)
# 		bb = random.randint(0, nn-1)
# 		a[aa], a[bb] = a[bb], a[aa]
# 	d = 0
# 	for i in a:
# 		d *= 10
# 		d += int(i)
# 	ans = gcd(ans, d)
# print(ans)
0