結果

問題 No.1339 循環小数
ユーザー ayaoniayaoni
提出日時 2021-01-16 01:55:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 1,261 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,464 KB
最終ジャッジ日時 2024-05-05 03:12:19
合計ジャッジ時間 3,424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,608 KB
testcase_01 AC 39 ms
58,880 KB
testcase_02 AC 38 ms
58,624 KB
testcase_03 AC 38 ms
59,100 KB
testcase_04 AC 39 ms
58,880 KB
testcase_05 AC 38 ms
59,008 KB
testcase_06 AC 39 ms
58,880 KB
testcase_07 AC 40 ms
59,008 KB
testcase_08 AC 39 ms
59,392 KB
testcase_09 AC 39 ms
59,008 KB
testcase_10 AC 43 ms
59,520 KB
testcase_11 AC 43 ms
60,672 KB
testcase_12 AC 42 ms
61,056 KB
testcase_13 AC 44 ms
60,672 KB
testcase_14 AC 47 ms
61,440 KB
testcase_15 AC 43 ms
61,184 KB
testcase_16 AC 41 ms
61,056 KB
testcase_17 AC 42 ms
60,928 KB
testcase_18 AC 42 ms
61,184 KB
testcase_19 AC 42 ms
60,928 KB
testcase_20 AC 41 ms
60,800 KB
testcase_21 AC 85 ms
62,464 KB
testcase_22 AC 91 ms
61,696 KB
testcase_23 AC 88 ms
61,696 KB
testcase_24 AC 86 ms
61,696 KB
testcase_25 AC 87 ms
62,080 KB
testcase_26 AC 87 ms
61,824 KB
testcase_27 AC 94 ms
61,824 KB
testcase_28 AC 94 ms
61,952 KB
testcase_29 AC 86 ms
62,080 KB
testcase_30 AC 89 ms
61,440 KB
testcase_31 AC 121 ms
61,728 KB
testcase_32 AC 121 ms
61,568 KB
testcase_33 AC 92 ms
62,336 KB
testcase_34 AC 54 ms
60,924 KB
testcase_35 AC 111 ms
60,416 KB
testcase_36 AC 88 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


def phi(n):
    ans = n
    for i in range(2,int(n**.5)+1):
        if n % i == 0:
            ans = (ans*(i-1))//i
            while n % i == 0:
                n //= i
            if n == 1:  # 時間短縮
                break
    if n != 1:
        ans = (ans*(n-1))//n
    return ans


def divisor(n):  # nの約数全列挙
    res = []
    for i in range(1,int(n**.5)+1):
        if n % i == 0:
            res.append(i)
            if i != n//i:
                res.append(n//i)
    return res


T = I()
for _ in range(T):
    N = I()
    while N % 2 == 0:
        N //= 2
    while N % 5 == 0:
        N //= 5

    if N == 1:
        print(1)
        continue

    r = phi(N)
    div = divisor(r)
    div.sort()

    for d in div:
        if pow(10,d,N) == 1:
            print(d)
            break
0