結果

問題 No.1339 循環小数
ユーザー ygd.ygd.
提出日時 2021-01-15 23:49:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,237 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 223,360 KB
最終ジャッジ日時 2024-05-05 02:06:54
合計ジャッジ時間 5,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,728 KB
testcase_01 AC 43 ms
59,776 KB
testcase_02 AC 48 ms
59,136 KB
testcase_03 AC 42 ms
60,160 KB
testcase_04 AC 42 ms
60,288 KB
testcase_05 AC 41 ms
59,264 KB
testcase_06 AC 41 ms
59,648 KB
testcase_07 AC 43 ms
60,160 KB
testcase_08 AC 41 ms
60,032 KB
testcase_09 AC 43 ms
60,800 KB
testcase_10 AC 44 ms
60,544 KB
testcase_11 AC 87 ms
75,924 KB
testcase_12 AC 89 ms
75,648 KB
testcase_13 AC 81 ms
76,288 KB
testcase_14 AC 90 ms
76,032 KB
testcase_15 AC 83 ms
75,776 KB
testcase_16 AC 85 ms
76,680 KB
testcase_17 AC 93 ms
75,760 KB
testcase_18 AC 74 ms
75,776 KB
testcase_19 AC 74 ms
75,776 KB
testcase_20 AC 74 ms
76,140 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 #

def factorization(n):
    arr = []
    temp = n
    if temp%2 == 0:
      cnt = 0
      while temp%2 == 0:
        cnt += 1
        temp//=2
      arr.append(2)
    for i in range(3, int(-(-n**0.5//1))+1,2):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append(i)
 
    if temp!=1:
        arr.append(temp)
 
    return arr


def Euler_totient_function(n):
    L = factorization(n)
    ret = n
    for x in L:
        ret = ret*(x-1)//x
    return ret

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

Case = int(input())
for _ in range(Case):
    N = int(input())
    while N%2 == 0:
        N //= 2
    while N%5 == 0:
        N //= 5
    #print(N)
    M = Euler_totient_function(N)
    #print(M)
    L = make_divisors(M)
    #print(L)
    for x in L:
        #print(x,pow(10,x-1) - 1%N,N)
        a = pow(10,x) - 1
        #print(a,N,a%N)
        if a % N == 0:
            print(x)
            break
0