結果

問題 No.1339 循環小数
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-16 10:15:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 130,352 KB
最終ジャッジ日時 2024-05-05 12:39:29
合計ジャッジ時間 7,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 54 ms
58,752 KB
testcase_02 AC 48 ms
58,752 KB
testcase_03 AC 49 ms
58,624 KB
testcase_04 AC 50 ms
58,624 KB
testcase_05 AC 50 ms
59,008 KB
testcase_06 AC 49 ms
58,496 KB
testcase_07 AC 49 ms
58,752 KB
testcase_08 AC 48 ms
58,752 KB
testcase_09 AC 49 ms
58,880 KB
testcase_10 AC 50 ms
58,880 KB
testcase_11 AC 54 ms
61,056 KB
testcase_12 AC 54 ms
61,312 KB
testcase_13 AC 54 ms
60,928 KB
testcase_14 AC 54 ms
60,928 KB
testcase_15 AC 53 ms
61,184 KB
testcase_16 AC 54 ms
61,056 KB
testcase_17 AC 53 ms
60,928 KB
testcase_18 AC 53 ms
60,928 KB
testcase_19 AC 54 ms
60,544 KB
testcase_20 AC 54 ms
60,800 KB
testcase_21 AC 301 ms
110,464 KB
testcase_22 AC 336 ms
115,960 KB
testcase_23 AC 319 ms
111,992 KB
testcase_24 AC 304 ms
112,724 KB
testcase_25 AC 325 ms
112,996 KB
testcase_26 AC 320 ms
111,516 KB
testcase_27 AC 320 ms
112,492 KB
testcase_28 AC 330 ms
114,508 KB
testcase_29 AC 280 ms
112,892 KB
testcase_30 AC 301 ms
109,364 KB
testcase_31 AC 455 ms
129,548 KB
testcase_32 AC 456 ms
129,820 KB
testcase_33 AC 321 ms
113,112 KB
testcase_34 AC 216 ms
99,336 KB
testcase_35 AC 496 ms
130,352 KB
testcase_36 AC 311 ms
110,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def baby_step_giant_step(a,b,mod):
    a %= mod
    b %= mod
    l = int(mod**0.5)+1
    h = 1 if mod != 0 else 0
    dic = {}
    for i in range(l):
        if h == b and i != 0:
            return i
        dic[h*b%mod] = i
        h *= a
        h %= mod
    g = h
    for i in range(l):
        if g in dic:
            res = (i+1)*l-dic[g]
            if pow(a,res,mod) == b:
                return res
            else:
                return -1
        g *= h
        g %= mod
    return -1

t = int(input())
for _ in range(t):
    n = int(input())
    while n%2 == 0:
        n //= 2
    while n%5 == 0:
        n //= 5
    print(baby_step_giant_step(10,1,n))
0