結果

問題 No.443 GCD of Permutation
ユーザー ayaoniayaoni
提出日時 2020-11-25 01:10:54
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 276 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-07-23 19:00:16
合計ジャッジ時間 3,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,536 KB
testcase_01 AC 44 ms
53,144 KB
testcase_02 AC 40 ms
53,448 KB
testcase_03 AC 40 ms
53,760 KB
testcase_04 AC 42 ms
53,468 KB
testcase_05 AC 42 ms
53,132 KB
testcase_06 AC 39 ms
53,276 KB
testcase_07 AC 40 ms
52,736 KB
testcase_08 AC 41 ms
53,116 KB
testcase_09 AC 41 ms
53,392 KB
testcase_10 AC 40 ms
52,940 KB
testcase_11 AC 40 ms
52,324 KB
testcase_12 AC 40 ms
53,208 KB
testcase_13 AC 39 ms
52,524 KB
testcase_14 RE -
testcase_15 AC 44 ms
60,196 KB
testcase_16 AC 44 ms
60,044 KB
testcase_17 AC 43 ms
59,976 KB
testcase_18 RE -
testcase_19 AC 45 ms
59,580 KB
testcase_20 RE -
testcase_21 AC 43 ms
59,812 KB
testcase_22 AC 41 ms
54,032 KB
testcase_23 AC 39 ms
53,580 KB
testcase_24 AC 39 ms
52,788 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
def S(): return sys.stdin.readline().rstrip()


N = S()

flag = [0]*10
for n in N:
    flag[int(n)] = 1

X = [i for i in range(10) if flag[i] == 1]
g = 0
for i in range(len(X)-1):
    g = gcd(g,X[i+1]-X[i])
g *= 9
print(gcd(g,int(''.join(N))))
0