結果

問題 No.1339 循環小数
ユーザー mkawa2mkawa2
提出日時 2021-01-16 10:11:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,191 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-05-05 12:36:17
合計ジャッジ時間 6,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,384 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 219 ms
10,752 KB
testcase_12 AC 241 ms
10,880 KB
testcase_13 AC 184 ms
10,880 KB
testcase_14 AC 195 ms
10,752 KB
testcase_15 AC 205 ms
10,752 KB
testcase_16 AC 185 ms
10,880 KB
testcase_17 AC 236 ms
10,880 KB
testcase_18 AC 176 ms
10,880 KB
testcase_19 AC 164 ms
10,752 KB
testcase_20 AC 141 ms
10,880 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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