結果

問題 No.1339 循環小数
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-01-15 22:02:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 62,336 KB
最終ジャッジ日時 2024-05-04 23:50:32
合計ジャッジ時間 3,682 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 42 ms
58,368 KB
testcase_02 AC 42 ms
58,112 KB
testcase_03 AC 43 ms
58,880 KB
testcase_04 AC 43 ms
58,496 KB
testcase_05 AC 43 ms
58,368 KB
testcase_06 AC 44 ms
58,624 KB
testcase_07 AC 44 ms
58,368 KB
testcase_08 AC 45 ms
58,496 KB
testcase_09 AC 46 ms
59,520 KB
testcase_10 AC 45 ms
59,264 KB
testcase_11 AC 49 ms
60,800 KB
testcase_12 AC 49 ms
60,928 KB
testcase_13 AC 49 ms
60,672 KB
testcase_14 AC 49 ms
60,544 KB
testcase_15 AC 50 ms
60,672 KB
testcase_16 AC 48 ms
60,928 KB
testcase_17 AC 49 ms
60,744 KB
testcase_18 AC 49 ms
60,672 KB
testcase_19 AC 49 ms
61,184 KB
testcase_20 AC 49 ms
60,672 KB
testcase_21 AC 84 ms
62,020 KB
testcase_22 AC 93 ms
61,952 KB
testcase_23 AC 86 ms
61,696 KB
testcase_24 AC 82 ms
61,696 KB
testcase_25 AC 89 ms
61,824 KB
testcase_26 AC 90 ms
61,568 KB
testcase_27 AC 86 ms
61,696 KB
testcase_28 AC 89 ms
61,440 KB
testcase_29 AC 79 ms
61,824 KB
testcase_30 AC 82 ms
61,568 KB
testcase_31 AC 142 ms
61,440 KB
testcase_32 AC 139 ms
61,440 KB
testcase_33 AC 89 ms
62,336 KB
testcase_34 AC 63 ms
60,288 KB
testcase_35 AC 133 ms
60,544 KB
testcase_36 AC 91 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    if n == 1:
        return [1]
    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]

def f(x):
    p = n = x
    d = 2
    while d * d <= n:
        if n % d == 0:
            p = p * (d - 1) // d
            while n % d == 0:
                n //= d
        d += 1
    return [p, p * (n - 1) // n][n > 1]

for _ in range(int(input())):
    n = int(input())
    while n % 2 == 0:
        n //= 2
    while n % 5 == 0:
        n //= 5
    if n == 1:
        print(1)
        continue
    euler = f(n)
    divs = make_divisors(euler)
    for i in divs:
        if pow(10, i, n) == 1:
            print(i)
            break
0