結果

問題 No.1339 循環小数
ユーザー ryuusagiryuusagi
提出日時 2021-01-15 23:50:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 590 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-05-05 02:07:26
合計ジャッジ時間 12,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
66,816 KB
testcase_01 AC 69 ms
69,888 KB
testcase_02 AC 66 ms
67,712 KB
testcase_03 AC 69 ms
67,456 KB
testcase_04 AC 64 ms
70,528 KB
testcase_05 AC 76 ms
71,552 KB
testcase_06 AC 68 ms
66,688 KB
testcase_07 AC 74 ms
70,912 KB
testcase_08 AC 71 ms
66,304 KB
testcase_09 AC 81 ms
68,992 KB
testcase_10 AC 79 ms
71,680 KB
testcase_11 AC 822 ms
77,952 KB
testcase_12 AC 810 ms
76,160 KB
testcase_13 AC 780 ms
76,032 KB
testcase_14 AC 824 ms
76,416 KB
testcase_15 AC 827 ms
76,032 KB
testcase_16 AC 759 ms
76,160 KB
testcase_17 AC 846 ms
76,160 KB
testcase_18 AC 760 ms
76,288 KB
testcase_19 AC 785 ms
76,032 KB
testcase_20 AC 720 ms
75,904 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 #

import math

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

for i in range(int(input())):
    m = n = int(input())
    while m%2==0:m//=2
    while m%5==0:m//=5
    if m==1:print(1)
    else:
        for i in make_divisors(sum(1for i in range(n)if math.gcd(i+1,n)==1)):
            if 10**i%m==1:
                print(i)
                break
0