結果

問題 No.443 GCD of Permutation
ユーザー ああいいああいい
提出日時 2022-03-08 19:38:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 444 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 62,068 KB
最終ジャッジ日時 2024-07-23 19:37:14
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,072 KB
testcase_01 AC 39 ms
52,492 KB
testcase_02 AC 39 ms
53,636 KB
testcase_03 AC 39 ms
52,200 KB
testcase_04 AC 39 ms
52,456 KB
testcase_05 AC 40 ms
52,064 KB
testcase_06 AC 39 ms
52,492 KB
testcase_07 AC 39 ms
52,080 KB
testcase_08 AC 38 ms
52,080 KB
testcase_09 AC 38 ms
52,440 KB
testcase_10 AC 39 ms
52,400 KB
testcase_11 AC 37 ms
52,868 KB
testcase_12 AC 38 ms
52,820 KB
testcase_13 AC 39 ms
52,448 KB
testcase_14 AC 44 ms
59,940 KB
testcase_15 AC 46 ms
60,432 KB
testcase_16 AC 44 ms
59,628 KB
testcase_17 AC 45 ms
61,132 KB
testcase_18 AC 46 ms
60,572 KB
testcase_19 AC 45 ms
59,804 KB
testcase_20 AC 46 ms
60,992 KB
testcase_21 AC 44 ms
61,316 KB
testcase_22 AC 38 ms
51,812 KB
testcase_23 AC 39 ms
52,272 KB
testcase_24 AC 38 ms
53,148 KB
testcase_25 AC 46 ms
61,872 KB
testcase_26 AC 46 ms
62,068 KB
testcase_27 AC 45 ms
60,248 KB
testcase_28 AC 45 ms
61,040 KB
testcase_29 AC 45 ms
62,024 KB
testcase_30 AC 45 ms
60,608 KB
testcase_31 AC 45 ms
61,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
l = list(map(int,list(N)))
dat = [0] * 10
s = set()
for i in l:
    s.add(i)

import sys
if len(s) == 1:
    print(N)
    exit()
def gcd(a,b):
    if b == 0:return a
    while True:
        r = a % b
        a = b
        b = r
        if r == 0:return a
d = 0
for i in range(10):
    for j in range(i+1,10):
        if i in s and j in s:
            d = gcd(d,j-i)
d *= 9
n = 0
for i in l:
    n = (n * 10 + i) % d
print(gcd(n,d))
0