結果

問題 No.1339 循環小数
ユーザー ryuusagiryuusagi
提出日時 2021-01-15 22:28:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,337 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 374,404 KB
最終ジャッジ日時 2024-05-05 00:29:22
合計ジャッジ時間 5,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,344 KB
testcase_01 AC 46 ms
59,392 KB
testcase_02 AC 42 ms
58,880 KB
testcase_03 AC 42 ms
59,008 KB
testcase_04 AC 42 ms
58,752 KB
testcase_05 AC 42 ms
59,136 KB
testcase_06 AC 43 ms
59,904 KB
testcase_07 AC 44 ms
59,520 KB
testcase_08 AC 42 ms
59,264 KB
testcase_09 AC 42 ms
59,520 KB
testcase_10 AC 42 ms
59,008 KB
testcase_11 AC 141 ms
112,000 KB
testcase_12 AC 141 ms
111,216 KB
testcase_13 AC 116 ms
107,388 KB
testcase_14 AC 129 ms
119,048 KB
testcase_15 AC 121 ms
103,168 KB
testcase_16 AC 110 ms
94,700 KB
testcase_17 AC 159 ms
119,804 KB
testcase_18 AC 105 ms
98,992 KB
testcase_19 AC 109 ms
98,412 KB
testcase_20 AC 100 ms
93,184 KB
testcase_21 TLE -
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[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