結果
問題 | No.1339 循環小数 |
ユーザー | titia |
提出日時 | 2021-01-15 23:01:39 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 156 ms / 2,000 ms |
コード長 | 1,039 bytes |
コンパイル時間 | 727 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 65,920 KB |
最終ジャッジ日時 | 2024-11-26 17:08:52 |
合計ジャッジ時間 | 4,239 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 36 |
ソースコード
import sys input = sys.stdin.readline import math def fac(x): L=int(math.sqrt(x)) FACT=dict() for i in range(2,L+2): while x%i==0: FACT[i]=FACT.get(i,0)+1 x=x//i if x!=1: FACT[x]=FACT.get(x,0)+1 return FACT def faclist(x): xr=math.ceil(math.sqrt(x)) LIST=[] for i in range(1,xr+1): if x%i==0: LIST.append(i) LIST.append(x//i) return sorted(set(LIST)) def calc(N): while N%2==0: N//=2 while N%5==0: N//=5 if N==1: return 1 F=fac(N) ANS=1 for f in F: for i in faclist(f-1): if pow(10,i,f)==1: xx=i break while True: if pow(10,xx,f**F[f])==1: ANS*=xx break else: xx*=f for i in faclist(ANS): if pow(10,i,N)==1: return i T=int(input()) for tests in range(T): N=int(input()) print(calc(N))