結果

問題 No.1339 循環小数
ユーザー googol_S0googol_S0
提出日時 2021-01-15 22:15:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2024-11-26 15:47:49
合計ジャッジ時間 3,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 45 ms
59,776 KB
testcase_02 AC 46 ms
59,392 KB
testcase_03 AC 46 ms
59,008 KB
testcase_04 AC 44 ms
59,264 KB
testcase_05 AC 45 ms
59,008 KB
testcase_06 AC 47 ms
59,648 KB
testcase_07 AC 46 ms
59,136 KB
testcase_08 AC 47 ms
59,264 KB
testcase_09 AC 46 ms
59,904 KB
testcase_10 AC 47 ms
58,880 KB
testcase_11 AC 50 ms
61,440 KB
testcase_12 AC 51 ms
61,568 KB
testcase_13 AC 51 ms
61,440 KB
testcase_14 AC 51 ms
61,312 KB
testcase_15 AC 50 ms
61,568 KB
testcase_16 AC 51 ms
61,184 KB
testcase_17 AC 50 ms
61,568 KB
testcase_18 AC 57 ms
63,872 KB
testcase_19 AC 50 ms
61,440 KB
testcase_20 AC 50 ms
61,568 KB
testcase_21 AC 89 ms
61,824 KB
testcase_22 AC 96 ms
62,208 KB
testcase_23 AC 92 ms
62,080 KB
testcase_24 AC 91 ms
62,208 KB
testcase_25 AC 93 ms
62,208 KB
testcase_26 AC 93 ms
61,568 KB
testcase_27 AC 93 ms
61,952 KB
testcase_28 AC 94 ms
61,952 KB
testcase_29 AC 86 ms
61,952 KB
testcase_30 AC 91 ms
62,080 KB
testcase_31 AC 114 ms
62,208 KB
testcase_32 AC 117 ms
61,952 KB
testcase_33 AC 93 ms
62,208 KB
testcase_34 AC 79 ms
60,672 KB
testcase_35 AC 127 ms
61,056 KB
testcase_36 AC 93 ms
62,080 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