結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,044 KB
testcase_01 AC 45 ms
124,024 KB
testcase_02 AC 46 ms
67,024 KB
testcase_03 AC 45 ms
125,272 KB
testcase_04 AC 47 ms
66,940 KB
testcase_05 AC 46 ms
131,332 KB
testcase_06 AC 49 ms
67,360 KB
testcase_07 AC 45 ms
136,540 KB
testcase_08 AC 47 ms
67,680 KB
testcase_09 AC 48 ms
130,504 KB
testcase_10 AC 45 ms
65,964 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
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.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