結果

問題 No.1339 循環小数
ユーザー mkawa2
提出日時 2021-01-16 10:11:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 1,191 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-11-27 10:04:33
合計ジャッジ時間 51,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 20 TLE * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def MI(): return map(int, sys.stdin.buffer.readline().split())
def MI1(): return map(int1, sys.stdin.buffer.readline().split())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
inf = 10**19
# md = 998244353
md = 10**9+7

def cnt(a):
    c2=c5=0
    while a%2==0:
        a//=2
        c2+=1
    while a%5==0:
        a//=5
        c5+=1
    return c2,c5

def gcd(a,b):
    while b:a,b=b,a%b
    return a

def red(a,b):
    g=gcd(a,b)
    return a//g,b//g

for _ in range(II()):
    n=II()

    c2,c5=cnt(n)
    d=10**max(c2,c5)
    d%=n
    if d==0:
        print(1)
        continue
    d,n=red(d,n)

    while 10*d<n:d*=10
    d,n=red(d,n)

    e,ten=1,10%n
    while ten!=1:
        ten=ten*10%n
        e+=1
    print(e)
0