結果

問題 No.1339 循環小数
ユーザー titiatitia
提出日時 2021-01-15 23:01:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,039 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-05-05 00:59:32
合計ジャッジ時間 3,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 47 ms
60,160 KB
testcase_02 AC 47 ms
60,288 KB
testcase_03 AC 47 ms
58,880 KB
testcase_04 AC 53 ms
60,288 KB
testcase_05 AC 51 ms
60,416 KB
testcase_06 AC 51 ms
60,288 KB
testcase_07 AC 49 ms
60,416 KB
testcase_08 AC 51 ms
60,800 KB
testcase_09 AC 46 ms
59,648 KB
testcase_10 AC 45 ms
60,672 KB
testcase_11 AC 51 ms
62,336 KB
testcase_12 AC 51 ms
62,592 KB
testcase_13 AC 56 ms
64,640 KB
testcase_14 AC 51 ms
62,080 KB
testcase_15 AC 52 ms
62,208 KB
testcase_16 AC 51 ms
61,952 KB
testcase_17 AC 51 ms
62,336 KB
testcase_18 AC 52 ms
62,208 KB
testcase_19 AC 55 ms
64,000 KB
testcase_20 AC 51 ms
62,336 KB
testcase_21 AC 96 ms
63,616 KB
testcase_22 AC 98 ms
63,872 KB
testcase_23 AC 104 ms
66,048 KB
testcase_24 AC 97 ms
64,512 KB
testcase_25 AC 108 ms
64,000 KB
testcase_26 AC 109 ms
63,872 KB
testcase_27 AC 98 ms
64,128 KB
testcase_28 AC 102 ms
64,128 KB
testcase_29 AC 93 ms
64,640 KB
testcase_30 AC 97 ms
64,128 KB
testcase_31 AC 117 ms
63,744 KB
testcase_32 AC 116 ms
63,872 KB
testcase_33 AC 100 ms
65,280 KB
testcase_34 AC 71 ms
60,928 KB
testcase_35 AC 155 ms
61,824 KB
testcase_36 AC 100 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

import math

def fac(x):
    L=int(math.sqrt(x))

    FACT=dict()

    for i in range(2,L+2):
        while x%i==0:
            FACT[i]=FACT.get(i,0)+1
            x=x//i

    if x!=1:
        FACT[x]=FACT.get(x,0)+1
    return FACT

def faclist(x):  
    xr=math.ceil(math.sqrt(x))

    LIST=[]
    for i in range(1,xr+1):
        if x%i==0:
            LIST.append(i)
            LIST.append(x//i)

    return sorted(set(LIST))

def calc(N):

    while N%2==0:
        N//=2

    while N%5==0:
        N//=5

    if N==1:
        return 1
    F=fac(N)
    ANS=1
    for f in F:
        for i in faclist(f-1):
            if pow(10,i,f)==1:
                xx=i
                break

        while True:
            if pow(10,xx,f**F[f])==1:
                ANS*=xx
                break
            else:
                xx*=f

    for i in faclist(ANS):
        if pow(10,i,N)==1:
            return i

T=int(input())
for tests in range(T):
    N=int(input())
    print(calc(N))

    

    
    
0