結果

問題 No.1339 循環小数
ユーザー Kiri8128Kiri8128
提出日時 2020-11-23 01:00:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 930 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 68,456 KB
最終ジャッジ日時 2024-09-13 01:48:36
合計ジャッジ時間 3,529 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,656 KB
testcase_01 AC 50 ms
61,656 KB
testcase_02 AC 51 ms
63,172 KB
testcase_03 AC 47 ms
60,996 KB
testcase_04 AC 47 ms
61,840 KB
testcase_05 AC 50 ms
62,316 KB
testcase_06 AC 47 ms
60,660 KB
testcase_07 AC 48 ms
60,888 KB
testcase_08 AC 50 ms
63,088 KB
testcase_09 AC 51 ms
63,024 KB
testcase_10 AC 47 ms
61,472 KB
testcase_11 AC 54 ms
63,908 KB
testcase_12 AC 52 ms
62,936 KB
testcase_13 AC 56 ms
64,900 KB
testcase_14 AC 52 ms
64,516 KB
testcase_15 AC 52 ms
64,308 KB
testcase_16 AC 56 ms
63,896 KB
testcase_17 AC 53 ms
63,172 KB
testcase_18 AC 54 ms
63,712 KB
testcase_19 AC 52 ms
63,312 KB
testcase_20 AC 53 ms
63,420 KB
testcase_21 AC 69 ms
67,732 KB
testcase_22 AC 67 ms
67,720 KB
testcase_23 AC 68 ms
67,372 KB
testcase_24 AC 69 ms
68,284 KB
testcase_25 AC 69 ms
68,188 KB
testcase_26 AC 67 ms
66,248 KB
testcase_27 AC 68 ms
67,468 KB
testcase_28 AC 65 ms
66,488 KB
testcase_29 AC 66 ms
68,456 KB
testcase_30 AC 65 ms
67,160 KB
testcase_31 AC 80 ms
66,308 KB
testcase_32 AC 82 ms
66,968 KB
testcase_33 AC 71 ms
68,364 KB
testcase_34 AC 54 ms
63,568 KB
testcase_35 AC 73 ms
63,560 KB
testcase_36 AC 67 ms
67,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primeFactor(N):
    i, n, ret, d, sq = 2, N, {}, 2, 99
    while i <= sq:
        k = 0
        while n % i == 0: n, k, ret[i] = n//i, k+1, k+1
        if k > 0 or i == 97: sq = int(n**(1/2)+0.5)
        if i < 4: i = i * 2 - 1
        else: i, d = i+d, d^6
    if n > 1: ret[n] = 1
    return ret
def divisors(N):
    pf = primeFactor(N)
    ret = [1]
    for p in pf:
        ret_prev = ret
        ret = []
        for i in range(pf[p]+1):
            for r in ret_prev:
                ret.append(r * (p ** i))
    return sorted(ret)
def calc(n):
    while n % 2 == 0:
        n //= 2
    while n % 5 == 0:
        n //= 5
    if n == 1:
        return 1
    pf = primeFactor(n)
    a = 1
    for p in pf:
        a *= (p - 1) * p ** (pf[p] - 1)
    
    for d in divisors(a):
        if pow(10, d, n) == 1:
            return d
            break
T = int(input())
for _ in range(T):
    N = int(input())
    print(calc(N))
0