結果

問題 No.1339 循環小数
ユーザー convexineqconvexineq
提出日時 2021-01-15 21:43:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 129,728 KB
最終ジャッジ日時 2024-11-26 13:50:42
合計ジャッジ時間 6,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,360 KB
testcase_01 AC 44 ms
58,424 KB
testcase_02 AC 40 ms
58,884 KB
testcase_03 AC 39 ms
58,552 KB
testcase_04 AC 38 ms
59,020 KB
testcase_05 AC 42 ms
59,324 KB
testcase_06 AC 40 ms
59,424 KB
testcase_07 AC 39 ms
58,216 KB
testcase_08 AC 42 ms
58,672 KB
testcase_09 AC 38 ms
58,824 KB
testcase_10 AC 41 ms
59,704 KB
testcase_11 AC 39 ms
61,640 KB
testcase_12 AC 42 ms
61,216 KB
testcase_13 AC 41 ms
61,648 KB
testcase_14 AC 41 ms
60,944 KB
testcase_15 AC 41 ms
61,156 KB
testcase_16 AC 42 ms
62,328 KB
testcase_17 AC 41 ms
61,212 KB
testcase_18 AC 42 ms
60,616 KB
testcase_19 AC 43 ms
61,568 KB
testcase_20 AC 45 ms
61,144 KB
testcase_21 AC 258 ms
110,024 KB
testcase_22 AC 286 ms
116,292 KB
testcase_23 AC 278 ms
111,492 KB
testcase_24 AC 260 ms
112,476 KB
testcase_25 AC 277 ms
112,968 KB
testcase_26 AC 277 ms
111,976 KB
testcase_27 AC 286 ms
113,068 KB
testcase_28 AC 284 ms
115,048 KB
testcase_29 AC 239 ms
112,648 KB
testcase_30 AC 261 ms
110,728 KB
testcase_31 AC 403 ms
128,308 KB
testcase_32 AC 401 ms
128,832 KB
testcase_33 AC 280 ms
112,744 KB
testcase_34 AC 182 ms
99,132 KB
testcase_35 AC 436 ms
129,728 KB
testcase_36 AC 274 ms
109,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def discrete_logarithm(a,b,MOD,permit0):
    a %= MOD; b %= MOD
    q = int(MOD**0.5)+2
    # baby-step
    h = 1 if MOD != 1 else 0 
    memo = {}
    for i in range(q):
        if h==b and (permit0 or i): return i
        memo[h*b%MOD] = i
        h = h*a%MOD
    # giant-step #ここに来た時 h = a^q
    g = h
    for i in range(q):
        if g in memo:
            res = (i+1)*q-memo[g]
            if pow(a,res,MOD) == b: return res
            else: return -1
        g = g*h%MOD
        
    return -1 #見つからない場合


T,*a = map(int,open(0).read().split())
for ai in a:
    while ai%2==0: ai//=2
    while ai%5==0: ai//=5
    print(discrete_logarithm(10,1,ai,0))
0