結果

問題 No.1339 循環小数
ユーザー ygd.ygd.
提出日時 2021-01-16 00:04:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,278 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 62,720 KB
最終ジャッジ日時 2024-05-05 02:12:20
合計ジャッジ時間 3,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 49 ms
58,368 KB
testcase_02 AC 49 ms
58,496 KB
testcase_03 AC 44 ms
59,008 KB
testcase_04 AC 43 ms
58,368 KB
testcase_05 AC 43 ms
58,496 KB
testcase_06 AC 44 ms
58,624 KB
testcase_07 AC 44 ms
58,624 KB
testcase_08 AC 50 ms
58,624 KB
testcase_09 AC 44 ms
59,136 KB
testcase_10 AC 44 ms
59,008 KB
testcase_11 AC 51 ms
61,568 KB
testcase_12 AC 51 ms
61,312 KB
testcase_13 AC 49 ms
61,312 KB
testcase_14 AC 50 ms
61,184 KB
testcase_15 AC 48 ms
61,312 KB
testcase_16 AC 47 ms
61,568 KB
testcase_17 AC 48 ms
61,440 KB
testcase_18 AC 49 ms
61,184 KB
testcase_19 AC 50 ms
61,440 KB
testcase_20 AC 55 ms
61,440 KB
testcase_21 AC 101 ms
62,336 KB
testcase_22 AC 104 ms
62,464 KB
testcase_23 AC 103 ms
62,208 KB
testcase_24 AC 103 ms
62,336 KB
testcase_25 AC 98 ms
62,336 KB
testcase_26 AC 93 ms
61,824 KB
testcase_27 AC 98 ms
62,720 KB
testcase_28 AC 103 ms
61,824 KB
testcase_29 AC 91 ms
62,592 KB
testcase_30 AC 93 ms
61,824 KB
testcase_31 AC 128 ms
61,952 KB
testcase_32 AC 125 ms
61,952 KB
testcase_33 AC 99 ms
62,720 KB
testcase_34 AC 72 ms
61,056 KB
testcase_35 AC 116 ms
60,672 KB
testcase_36 AC 97 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

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)
    if N == 1:
      print(1)
      continue
    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,N) - 1
        #print("A",a)
        if a == 0:
            print(x)
            break
0