結果

問題 No.1339 循環小数
ユーザー GER_chenGER_chen
提出日時 2021-01-22 16:24:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,282 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-06-08 02:47:27
合計ジャッジ時間 3,595 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
11,392 KB
testcase_01 AC 43 ms
11,520 KB
testcase_02 AC 45 ms
11,520 KB
testcase_03 AC 48 ms
11,520 KB
testcase_04 AC 43 ms
11,520 KB
testcase_05 AC 43 ms
11,392 KB
testcase_06 AC 44 ms
11,520 KB
testcase_07 AC 42 ms
11,392 KB
testcase_08 AC 44 ms
11,520 KB
testcase_09 AC 44 ms
11,392 KB
testcase_10 AC 45 ms
11,520 KB
testcase_11 AC 48 ms
11,520 KB
testcase_12 AC 47 ms
11,392 KB
testcase_13 AC 46 ms
11,392 KB
testcase_14 AC 48 ms
11,520 KB
testcase_15 AC 46 ms
11,392 KB
testcase_16 AC 47 ms
11,392 KB
testcase_17 AC 44 ms
11,392 KB
testcase_18 AC 45 ms
11,392 KB
testcase_19 AC 45 ms
11,520 KB
testcase_20 AC 48 ms
11,520 KB
testcase_21 AC 86 ms
11,520 KB
testcase_22 AC 87 ms
11,392 KB
testcase_23 AC 84 ms
11,392 KB
testcase_24 AC 86 ms
11,392 KB
testcase_25 AC 94 ms
11,392 KB
testcase_26 AC 90 ms
11,392 KB
testcase_27 AC 100 ms
11,392 KB
testcase_28 AC 89 ms
11,520 KB
testcase_29 AC 84 ms
11,520 KB
testcase_30 AC 81 ms
11,520 KB
testcase_31 AC 140 ms
11,520 KB
testcase_32 AC 141 ms
11,520 KB
testcase_33 AC 92 ms
11,520 KB
testcase_34 AC 51 ms
11,520 KB
testcase_35 AC 119 ms
11,520 KB
testcase_36 AC 90 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki-1339
T = int(input())

candidates = [2*i+1 for i in range(1, 15811)]
primelist = [2]
p = 3
while p**2 <= 31623:
    primelist.append(p)
    candidates = [c for c in candidates if c%p]
    p = candidates[0]
primelist += candidates
l = len(primelist)

def ediv(n):
    """
    nが奇数の時
    """
    t = 1
    from collections import defaultdict as ddt
    d = ddt(int)
    i = 1
    while i < l and primelist[i]**2 <= n:
        p = primelist[i]
        if not n%p:
            n //= p
            t *= p-1
            while not n%p:
                n //= p
                d[p] += 1
        i += 1
    if n > 1:
        t *= n-1
        
    j = 0
    while primelist[j]**2 <= t:
        q = primelist[j]
        while not t%q:
            d[q] += 1
            t //= q
        j += 1
    if t > 1:
        d[t] += 1
        
    ans = {1}
    for k in d.keys():
        plus = set()
        for x in ans:
            for ex in range(d[k]):
                plus.add(x*k**(ex+1))
        ans |= plus
    return sorted(ans)

for _ in range(T):
    N = int(input())  #10**9以下
    while not N%2:
        N //= 2
    while not N%5:
        N //= 5
    if N == 1:
        print(1)
    for d in ediv(N):
        if pow(10, d, N) == 1:
            print(d)
            break
0