結果

問題 No.1339 循環小数
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-01-15 22:02:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 61,824 KB
最終ジャッジ日時 2024-11-26 14:45:41
合計ジャッジ時間 4,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 43 ms
57,344 KB
testcase_02 AC 41 ms
58,112 KB
testcase_03 AC 42 ms
58,624 KB
testcase_04 AC 42 ms
58,112 KB
testcase_05 AC 42 ms
58,112 KB
testcase_06 AC 41 ms
57,600 KB
testcase_07 AC 41 ms
57,600 KB
testcase_08 AC 43 ms
57,856 KB
testcase_09 AC 43 ms
59,520 KB
testcase_10 AC 42 ms
58,112 KB
testcase_11 AC 46 ms
60,160 KB
testcase_12 AC 46 ms
60,288 KB
testcase_13 AC 46 ms
60,160 KB
testcase_14 AC 48 ms
60,544 KB
testcase_15 AC 47 ms
60,544 KB
testcase_16 AC 48 ms
60,672 KB
testcase_17 AC 47 ms
60,416 KB
testcase_18 AC 47 ms
60,800 KB
testcase_19 AC 47 ms
60,160 KB
testcase_20 AC 48 ms
60,160 KB
testcase_21 AC 82 ms
61,312 KB
testcase_22 AC 85 ms
61,184 KB
testcase_23 AC 90 ms
61,568 KB
testcase_24 AC 86 ms
61,824 KB
testcase_25 AC 89 ms
61,312 KB
testcase_26 AC 88 ms
60,800 KB
testcase_27 AC 88 ms
61,440 KB
testcase_28 AC 88 ms
61,184 KB
testcase_29 AC 79 ms
61,312 KB
testcase_30 AC 84 ms
61,568 KB
testcase_31 AC 139 ms
60,672 KB
testcase_32 AC 142 ms
61,440 KB
testcase_33 AC 88 ms
61,568 KB
testcase_34 AC 64 ms
60,288 KB
testcase_35 AC 130 ms
60,160 KB
testcase_36 AC 91 ms
61,440 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