結果

問題 No.1339 循環小数
ユーザー ryuusagiryuusagi
提出日時 2021-01-15 22:28:20
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,337 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 569,184 KB
最終ジャッジ日時 2024-11-26 16:15:27
合計ジャッジ時間 51,475 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,084 KB
testcase_01 AC 49 ms
429,116 KB
testcase_02 AC 48 ms
64,424 KB
testcase_03 AC 47 ms
427,832 KB
testcase_04 AC 47 ms
66,284 KB
testcase_05 AC 49 ms
428,564 KB
testcase_06 AC 47 ms
67,072 KB
testcase_07 AC 47 ms
428,504 KB
testcase_08 AC 46 ms
66,324 KB
testcase_09 AC 49 ms
428,632 KB
testcase_10 AC 46 ms
66,292 KB
testcase_11 MLE -
testcase_12 AC 157 ms
117,916 KB
testcase_13 AC 142 ms
107,696 KB
testcase_14 AC 148 ms
126,196 KB
testcase_15 AC 145 ms
472,584 KB
testcase_16 AC 123 ms
101,668 KB
testcase_17 AC 173 ms
425,440 KB
testcase_18 AC 116 ms
105,636 KB
testcase_19 AC 120 ms
468,152 KB
testcase_20 AC 112 ms
98,944 KB
testcase_21 MLE -
testcase_22 TLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 MLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

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[remainder]=0  # なければ余りのリストに追加して次のループへ
        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