結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,712 KB
testcase_01 AC 47 ms
57,856 KB
testcase_02 AC 47 ms
58,368 KB
testcase_03 AC 48 ms
58,112 KB
testcase_04 AC 46 ms
57,856 KB
testcase_05 AC 47 ms
58,112 KB
testcase_06 AC 47 ms
57,728 KB
testcase_07 AC 47 ms
57,984 KB
testcase_08 AC 47 ms
57,728 KB
testcase_09 AC 48 ms
58,112 KB
testcase_10 AC 47 ms
58,112 KB
testcase_11 AC 52 ms
60,672 KB
testcase_12 AC 51 ms
60,416 KB
testcase_13 AC 51 ms
60,544 KB
testcase_14 AC 50 ms
60,032 KB
testcase_15 AC 51 ms
60,416 KB
testcase_16 AC 52 ms
60,416 KB
testcase_17 AC 52 ms
60,544 KB
testcase_18 AC 52 ms
60,544 KB
testcase_19 AC 51 ms
60,160 KB
testcase_20 AC 51 ms
59,904 KB
testcase_21 AC 300 ms
110,060 KB
testcase_22 AC 333 ms
116,320 KB
testcase_23 AC 318 ms
111,432 KB
testcase_24 AC 301 ms
112,532 KB
testcase_25 AC 321 ms
111,672 KB
testcase_26 AC 326 ms
112,276 KB
testcase_27 AC 321 ms
113,004 KB
testcase_28 AC 330 ms
115,392 KB
testcase_29 AC 285 ms
112,876 KB
testcase_30 AC 307 ms
110,892 KB
testcase_31 AC 456 ms
128,372 KB
testcase_32 AC 462 ms
129,212 KB
testcase_33 AC 328 ms
112,860 KB
testcase_34 AC 218 ms
99,060 KB
testcase_35 AC 502 ms
129,728 KB
testcase_36 AC 317 ms
109,836 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