結果
問題 | No.1339 循環小数 |
ユーザー | H20 |
提出日時 | 2021-01-15 23:40:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,095 bytes |
コンパイル時間 | 139 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 70,144 KB |
最終ジャッジ日時 | 2024-05-05 02:05:28 |
合計ジャッジ時間 | 6,498 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
import math import collections #素因数分解 #collections.Counter(prime_factorize(N))で個数を取得 #最大公約数 def lcm(x, y): return (x * y) // math.gcd(x, y) def prime_factorize(n): a = [] while n % 2 == 0: a.append(2) n //= 2 f = 3 while f * f <= n: if n % f == 0: a.append(f) n //= f else: f += 2 if n != 1: a.append(n) return a T = int(input()) for i in range(T): N = int(input()) P=prime_factorize(N) if 2 in P: P.remove(2) if 5 in P: P.remove(5) if len(P)==0: print(1) else: L=list(set(P)) rep = [] for l in L: temp = 9 % l cnt = 1 while temp!=0: temp = (temp*10+9)%l cnt+=1 rep.append(cnt) lc = 1 for r in rep: lc = lcm(lc,r) temp = 1 CP = collections.Counter(P) for k,v in CP.items(): if v>=2: temp*=k**(v-1) print(lc*temp)