結果

問題 No.1339 循環小数
ユーザー googol_S0googol_S0
提出日時 2021-01-15 22:15:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-05-05 00:11:00
合計ジャッジ時間 3,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 45 ms
60,020 KB
testcase_02 AC 46 ms
59,264 KB
testcase_03 AC 44 ms
59,520 KB
testcase_04 AC 43 ms
59,232 KB
testcase_05 AC 43 ms
59,008 KB
testcase_06 AC 46 ms
59,776 KB
testcase_07 AC 43 ms
59,392 KB
testcase_08 AC 44 ms
59,264 KB
testcase_09 AC 51 ms
60,032 KB
testcase_10 AC 43 ms
59,264 KB
testcase_11 AC 45 ms
61,568 KB
testcase_12 AC 45 ms
61,056 KB
testcase_13 AC 46 ms
61,696 KB
testcase_14 AC 47 ms
61,440 KB
testcase_15 AC 46 ms
61,568 KB
testcase_16 AC 47 ms
61,440 KB
testcase_17 AC 47 ms
61,440 KB
testcase_18 AC 51 ms
64,512 KB
testcase_19 AC 47 ms
61,184 KB
testcase_20 AC 49 ms
61,440 KB
testcase_21 AC 77 ms
62,116 KB
testcase_22 AC 83 ms
62,080 KB
testcase_23 AC 82 ms
61,824 KB
testcase_24 AC 82 ms
62,080 KB
testcase_25 AC 84 ms
61,952 KB
testcase_26 AC 84 ms
61,952 KB
testcase_27 AC 82 ms
62,208 KB
testcase_28 AC 83 ms
62,336 KB
testcase_29 AC 75 ms
61,824 KB
testcase_30 AC 84 ms
61,568 KB
testcase_31 AC 106 ms
62,080 KB
testcase_32 AC 106 ms
62,208 KB
testcase_33 AC 85 ms
62,080 KB
testcase_34 AC 73 ms
60,544 KB
testcase_35 AC 121 ms
60,672 KB
testcase_36 AC 85 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
def lcm(X):
  r=X[0]
  for i in range(len(X)):
    r=r*X[i]//gcd(r,X[i])
  return r

def f(x):
  r=[]
  for i in range(2,int(x**0.5)+1):
    if x%i==0:
      r.append([i,0])
      while x%i==0:
        x//=i
        r[-1][1]+=1
  if x>1:
    r.append([x,1])
  return r

def d(x):
  r=[]
  for i in range(1,int(x**0.5)+1):
    if x%i==0:
      r.append(i)
      if i*i!=x:
        r.append(x//i)
  r.sort()
  return r

def l(x):
  if len(x)==1:
    if x[0][0]==2:
      if x[0][1]<=2:
        return x[0][1]
      else:
        return 2**(x[0][1]-2)
    else:
      return (x[0][0]**(x[0][1]-1))*(x[0][0]-1)
  return lcm([l([x[i]]) for i in range(len(x))])

def solve():
  N=int(input())
  while N%2==0:
    N//=2
  while N%5==0:
    N//=5
  if N==1:
    print(1)
    return 0
  X=d(l(f(N)))
  for j in range(len(X)):
    if pow(10,X[j],N)==1:
      print(X[j])
      return 0

for i in range(int(input())):
  solve()
0