結果

問題 No.1339 循環小数
ユーザー shotoyooshotoyoo
提出日時 2021-01-15 22:53:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 2,459 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 130,176 KB
最終ジャッジ日時 2024-05-05 00:53:36
合計ジャッジ時間 7,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,608 KB
testcase_01 AC 50 ms
59,264 KB
testcase_02 AC 46 ms
59,264 KB
testcase_03 AC 45 ms
59,392 KB
testcase_04 AC 49 ms
59,392 KB
testcase_05 AC 46 ms
59,264 KB
testcase_06 AC 45 ms
59,008 KB
testcase_07 AC 47 ms
59,392 KB
testcase_08 AC 47 ms
59,392 KB
testcase_09 AC 48 ms
59,008 KB
testcase_10 AC 47 ms
60,160 KB
testcase_11 AC 50 ms
61,824 KB
testcase_12 AC 52 ms
62,336 KB
testcase_13 AC 51 ms
62,080 KB
testcase_14 AC 55 ms
63,104 KB
testcase_15 AC 52 ms
62,208 KB
testcase_16 AC 56 ms
62,208 KB
testcase_17 AC 55 ms
61,824 KB
testcase_18 AC 55 ms
61,824 KB
testcase_19 AC 54 ms
61,568 KB
testcase_20 AC 54 ms
61,824 KB
testcase_21 AC 278 ms
110,592 KB
testcase_22 AC 296 ms
117,504 KB
testcase_23 AC 285 ms
115,712 KB
testcase_24 AC 273 ms
110,720 KB
testcase_25 AC 283 ms
114,560 KB
testcase_26 AC 284 ms
111,488 KB
testcase_27 AC 287 ms
113,920 KB
testcase_28 AC 296 ms
117,504 KB
testcase_29 AC 257 ms
112,384 KB
testcase_30 AC 273 ms
110,592 KB
testcase_31 AC 406 ms
129,664 KB
testcase_32 AC 411 ms
130,176 KB
testcase_33 AC 298 ms
111,668 KB
testcase_34 AC 193 ms
100,224 KB
testcase_35 AC 461 ms
130,176 KB
testcase_36 AC 291 ms
112,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
_print = lambda *x: print(*x, file=sys.stderr)

def gcd2(a, b):
    """a*x + b*y = gcd(a,b)なるx,yも求める
    """
    l = []
    while b:
        l.append(divmod(a,b))
        a, b = b, a%b
    x, y = 1, 0
    for aa,bb in l[::-1]:
        x, y = y, x - aa*y
    return a, x, y

def modinv(x, M):
    """素数ではないM、Mと互いに素なxに対し
    x * y == 1 mod M なるyを求める
    """
    a,xx,yy = gcd2(x,M)
    return a,xx%M

def solve(a,b,n):
    """a*x = b mod nを解く
    """
    g,xx,yy = gcd2(a,n)
    if b%g!=0:
        return None
    a //= g
    n //= g
    b //= g
    # aとnが互いに素になっているので
    ainv = modinv(a, n)
    x = ainv*b%n
    return x

def crt(rs, ms):
    """中国剰余定理
    x == rs[i] mod ms[i] をみたすxをを求め、(x, l(=ms))を返す
    (そのようなxは x + i * lとして書ける)
    存在しない場合はNoneを返す
    長さが0の配列を渡すと(0,1)を返す
    """
    r0 = 0
    m0 = 1
    for r1,m1 in zip(rs, ms):
        if m0<m1:
            m0, m1 = m1, m0
            r0, r1 = r1, r0
        if m0%m1==0:
            if r0%m1 != r1:
                return None,None
            else:
                continue
#         print(m0,m1)
        g,im = modinv(m0, m1)
        u1 = m1//g
        if (r1-r0)%g!=0:
            return None,None
        x = (r1-r0) // g % u1 * im % u1
        r0 += x * m0
        m0 *= u1
        if r0<0:
            r0 += m0
    return r0,m0

### 離散対数問題
def dlog(x,y,M):
    """互いに素なx,Mに対してpow(x,i,M)==y なる最小のiを返す
    存在しない場合Noneを返す
    """
    l = int(M**0.5)+1
    d = {}
    v = x%M
    for i in range(1,l+1):
        d[v] = i
        v *= x
        v %= M
    v = y
    _,tmp = modinv(pow(x,l,M), M)
    for i in range(l+1):
        if v in d:
            vv = x%M
            for j in range(1,l+1):
                if vv==v:
                    break
                vv *= x
                vv %= M
            return i*l + j
        v *= tmp
        v %= M
    return None

t = int(input())
from math import gcd
for _ in range(t):
    n = int(input())
    while n%2==0:
        n //= 2
    while n%5==0:
        n //= 5
    if n==1:
        ans = 1
    else:
        ans = dlog(10,1,n)
    print(ans)
0