結果

問題 No.1339 循環小数
ユーザー ygd.ygd.
提出日時 2021-01-16 00:01:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,235 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-05-05 02:10:18
合計ジャッジ時間 3,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 46 ms
58,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 52 ms
61,312 KB
testcase_12 AC 52 ms
61,696 KB
testcase_13 AC 52 ms
61,696 KB
testcase_14 AC 53 ms
61,312 KB
testcase_15 AC 53 ms
61,312 KB
testcase_16 AC 52 ms
61,184 KB
testcase_17 AC 52 ms
61,184 KB
testcase_18 AC 51 ms
61,184 KB
testcase_19 AC 52 ms
61,056 KB
testcase_20 AC 52 ms
61,568 KB
testcase_21 AC 99 ms
62,592 KB
testcase_22 AC 103 ms
62,080 KB
testcase_23 AC 102 ms
62,208 KB
testcase_24 AC 99 ms
62,080 KB
testcase_25 AC 103 ms
62,336 KB
testcase_26 AC 101 ms
61,824 KB
testcase_27 AC 103 ms
62,848 KB
testcase_28 AC 103 ms
62,208 KB
testcase_29 AC 97 ms
62,592 KB
testcase_30 AC 103 ms
62,592 KB
testcase_31 AC 129 ms
62,336 KB
testcase_32 AC 130 ms
62,080 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 118 ms
60,800 KB
testcase_36 AC 104 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)
    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,N,a%N)
        if a == 0:
            print(x)
            break
0