結果

問題 No.1339 循環小数
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-12 13:55:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 935 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,096 KB
最終ジャッジ日時 2024-07-19 07:30:09
合計ジャッジ時間 6,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 37 ms
58,624 KB
testcase_02 AC 37 ms
58,624 KB
testcase_03 AC 38 ms
58,416 KB
testcase_04 AC 38 ms
58,872 KB
testcase_05 AC 36 ms
58,624 KB
testcase_06 AC 37 ms
58,880 KB
testcase_07 AC 37 ms
58,984 KB
testcase_08 AC 37 ms
58,752 KB
testcase_09 AC 38 ms
58,496 KB
testcase_10 AC 38 ms
58,624 KB
testcase_11 AC 41 ms
61,184 KB
testcase_12 AC 39 ms
61,696 KB
testcase_13 AC 39 ms
61,184 KB
testcase_14 AC 40 ms
60,928 KB
testcase_15 AC 41 ms
61,568 KB
testcase_16 AC 40 ms
60,928 KB
testcase_17 AC 40 ms
60,672 KB
testcase_18 AC 41 ms
60,672 KB
testcase_19 AC 41 ms
60,368 KB
testcase_20 AC 39 ms
61,056 KB
testcase_21 AC 233 ms
111,048 KB
testcase_22 AC 261 ms
116,544 KB
testcase_23 AC 252 ms
113,176 KB
testcase_24 AC 236 ms
111,428 KB
testcase_25 AC 256 ms
113,796 KB
testcase_26 AC 258 ms
109,100 KB
testcase_27 AC 250 ms
113,684 KB
testcase_28 AC 254 ms
114,124 KB
testcase_29 AC 216 ms
112,676 KB
testcase_30 AC 228 ms
110,076 KB
testcase_31 AC 359 ms
128,096 KB
testcase_32 AC 363 ms
129,096 KB
testcase_33 AC 268 ms
112,372 KB
testcase_34 AC 174 ms
99,460 KB
testcase_35 AC 400 ms
128,380 KB
testcase_36 AC 257 ms
111,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# baby-step-giant-step
# 離散対数問題(Discrete Logarithm Problem)を解くアルゴリズム。
# あるX,Y,M について X^K≡Y (mod M) となる K を求める。
# X,Mは互いに素
def bsgs(x,y,m):
  c=int(m**0.5)+1
  d={}
  # baby-step
  now=1
  for i in range(c):
    d[now]=i
    now*=x
    now%=m
    if now==y:return i+1
  # giant-step
  gs=now
  now=1
  for i in range(c):
    now*=gs
    now%=n
    if now in d:return (i+1)*c-d[now]
  return n

# now=1からはじめ、以下を繰り返す。
# ・now%=n
# ・now*=10
# 過去に一度出たnowが再び出たらそこから循環する。nowの取りうる値は0~n-1なので循環は高々n個から成る。
# 10**k=1 (mod n)となるkで循環する
# baby-step-giant-step
if __name__=='__main__':
  t=int(input())
  cases=[int(input()) for _ in range(t)]
  for n in cases:
    while n%5==0:n//=5
    while n%2==0:n//=2
    retb=bsgs(10,1,n)
    print(retb)
0