結果

問題 No.1339 循環小数
ユーザー FuyuruFuyuru
提出日時 2023-11-09 15:41:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,536 KB
最終ジャッジ日時 2024-09-26 00:21:22
合計ジャッジ時間 6,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 41 ms
58,960 KB
testcase_02 AC 40 ms
58,496 KB
testcase_03 AC 39 ms
59,008 KB
testcase_04 AC 40 ms
59,008 KB
testcase_05 AC 40 ms
58,496 KB
testcase_06 AC 39 ms
58,880 KB
testcase_07 AC 39 ms
58,880 KB
testcase_08 AC 42 ms
59,264 KB
testcase_09 AC 41 ms
58,752 KB
testcase_10 AC 40 ms
58,752 KB
testcase_11 AC 44 ms
61,568 KB
testcase_12 AC 44 ms
61,568 KB
testcase_13 AC 43 ms
61,568 KB
testcase_14 AC 43 ms
61,312 KB
testcase_15 AC 44 ms
61,696 KB
testcase_16 AC 43 ms
61,184 KB
testcase_17 AC 43 ms
61,568 KB
testcase_18 AC 44 ms
61,440 KB
testcase_19 AC 45 ms
61,056 KB
testcase_20 AC 44 ms
61,312 KB
testcase_21 AC 255 ms
110,300 KB
testcase_22 AC 281 ms
116,256 KB
testcase_23 AC 276 ms
114,820 KB
testcase_24 AC 256 ms
112,420 KB
testcase_25 AC 274 ms
112,580 KB
testcase_26 AC 281 ms
112,712 KB
testcase_27 AC 278 ms
112,152 KB
testcase_28 AC 285 ms
116,076 KB
testcase_29 AC 248 ms
111,920 KB
testcase_30 AC 262 ms
109,680 KB
testcase_31 AC 396 ms
129,460 KB
testcase_32 AC 398 ms
129,352 KB
testcase_33 AC 274 ms
111,504 KB
testcase_34 AC 186 ms
98,988 KB
testcase_35 AC 425 ms
129,536 KB
testcase_36 AC 267 ms
113,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


def discrete_log(x,y,M):
    m = math.ceil(math.sqrt(M))
    pows = dict()
    p = 1
    for i in range(m):
        if p not in pows:
            pows[p] = i
        p = p*x%M
    inv = pow(x,m*(-1),M)
    tmp = y%M
    for i in range(m):
        if tmp in pows:
            return i*m+pows[tmp]
        tmp = tmp*inv%M
        
        
def get_length(d):
    while d%2 == 0:
        d //= 2
    while d%5 == 0:
        d //= 5
    if d == 1:
        return 1
    return discrete_log(10,pow(10,-1,d),d)+1


T = int(input())
for i in range(T):
    N = int(input())
    print(get_length(N))
0