結果

問題 No.1339 循環小数
ユーザー ryuusagiryuusagi
提出日時 2021-01-15 22:23:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,372 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 59,136 KB
最終ジャッジ日時 2024-05-05 00:22:50
合計ジャッジ時間 4,234 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,472 KB
testcase_01 AC 46 ms
58,368 KB
testcase_02 AC 45 ms
58,752 KB
testcase_03 AC 44 ms
58,112 KB
testcase_04 AC 48 ms
58,240 KB
testcase_05 AC 47 ms
58,752 KB
testcase_06 AC 47 ms
58,880 KB
testcase_07 AC 45 ms
58,752 KB
testcase_08 AC 48 ms
59,136 KB
testcase_09 AC 49 ms
59,008 KB
testcase_10 AC 50 ms
58,880 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def digits_recurring_cycle(denominator: int) -> int:
    """
    1/d(denominator)の循環小数の循環節の数を返す関数
    1/7 = 0.142857142857...循環節は6
    割り切れる場合は0を返す
    :param denominator: 分母 int
    :return: 循環節の数 int
    """
    remainder = 1
    remainders = []  # 各計算の余りを格納する
    while True:
        remainder = remainder % denominator  # 余りを求める
        if remainder == 0:  # 割り切れれば
            return 0
        # 出た余りが以前に出ていれば、そこから繰り返し(循環)に入るということ
        # 以前に同じ余りが出たところ(remainders.index(numerator))から
        # 今回出たところの直前(配列の終わり)までの長さが循環節の長さになる
        if remainder in remainders:  # 今回出た余りと同じ余りが以前出ていれば
            return len(remainders[remainders.index(remainder):])  # 循環節の長さを返す
        remainders.append(remainder)  # なければ余りのリストに追加して次のループへ
        remainder *= 10  # 余りを10倍して、次のループでもう一度denominatorで割る

for i in range(int(input())):
    n = int(input())
    while n%2==0:n//=2
    while n%5==0:n//=5
    if n==1:print(1)
    else: print(digits_recurring_cycle(n))
0