結果

問題 No.1339 循環小数
ユーザー ygd.ygd.
提出日時 2021-01-15 23:49:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,237 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 279,108 KB
最終ジャッジ日時 2024-11-26 18:42:37
合計ジャッジ時間 50,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,856 KB
testcase_01 AC 46 ms
279,108 KB
testcase_02 AC 46 ms
65,280 KB
testcase_03 AC 46 ms
246,228 KB
testcase_04 AC 46 ms
65,536 KB
testcase_05 AC 47 ms
237,032 KB
testcase_06 AC 46 ms
64,640 KB
testcase_07 AC 47 ms
209,228 KB
testcase_08 AC 45 ms
64,768 KB
testcase_09 AC 48 ms
278,496 KB
testcase_10 AC 46 ms
65,792 KB
testcase_11 AC 90 ms
232,540 KB
testcase_12 AC 95 ms
80,896 KB
testcase_13 AC 86 ms
236,580 KB
testcase_14 AC 97 ms
81,664 KB
testcase_15 AC 88 ms
277,372 KB
testcase_16 AC 94 ms
81,664 KB
testcase_17 AC 98 ms
226,724 KB
testcase_18 AC 86 ms
81,152 KB
testcase_19 AC 81 ms
258,272 KB
testcase_20 AC 80 ms
82,980 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

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