結果

問題 No.1339 循環小数
ユーザー ryuusagiryuusagi
提出日時 2021-01-15 23:50:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 590 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 154,148 KB
最終ジャッジ日時 2024-11-26 18:43:54
合計ジャッジ時間 58,634 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
69,456 KB
testcase_01 AC 67 ms
145,340 KB
testcase_02 AC 67 ms
75,852 KB
testcase_03 AC 64 ms
143,320 KB
testcase_04 AC 62 ms
78,252 KB
testcase_05 AC 64 ms
147,848 KB
testcase_06 AC 64 ms
74,244 KB
testcase_07 AC 63 ms
148,260 KB
testcase_08 AC 62 ms
74,252 KB
testcase_09 AC 69 ms
145,992 KB
testcase_10 AC 66 ms
79,524 KB
testcase_11 AC 886 ms
154,148 KB
testcase_12 AC 871 ms
82,880 KB
testcase_13 AC 843 ms
151,644 KB
testcase_14 AC 889 ms
82,920 KB
testcase_15 AC 899 ms
152,532 KB
testcase_16 AC 823 ms
83,316 KB
testcase_17 AC 907 ms
151,996 KB
testcase_18 AC 831 ms
83,084 KB
testcase_19 AC 851 ms
151,884 KB
testcase_20 AC 794 ms
83,356 KB
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 #

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