結果
問題 | No.1006 Share an Integer |
ユーザー | None |
提出日時 | 2021-02-26 21:16:26 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,888 ms / 2,000 ms |
コード長 | 3,321 bytes |
コンパイル時間 | 571 ms |
コンパイル使用メモリ | 82,588 KB |
実行使用メモリ | 100,636 KB |
最終ジャッジ日時 | 2024-10-02 13:41:19 |
合計ジャッジ時間 | 18,516 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,924 KB |
testcase_01 | AC | 37 ms
53,204 KB |
testcase_02 | AC | 50 ms
62,852 KB |
testcase_03 | AC | 39 ms
53,328 KB |
testcase_04 | AC | 50 ms
64,748 KB |
testcase_05 | AC | 63 ms
72,980 KB |
testcase_06 | AC | 65 ms
73,968 KB |
testcase_07 | AC | 63 ms
73,492 KB |
testcase_08 | AC | 65 ms
73,628 KB |
testcase_09 | AC | 63 ms
74,136 KB |
testcase_10 | AC | 64 ms
73,944 KB |
testcase_11 | AC | 1,076 ms
90,060 KB |
testcase_12 | AC | 1,781 ms
99,052 KB |
testcase_13 | AC | 1,871 ms
100,232 KB |
testcase_14 | AC | 1,888 ms
100,636 KB |
testcase_15 | AC | 1,655 ms
97,088 KB |
testcase_16 | AC | 807 ms
86,836 KB |
testcase_17 | AC | 1,084 ms
90,524 KB |
testcase_18 | AC | 1,627 ms
97,328 KB |
testcase_19 | AC | 1,568 ms
96,636 KB |
testcase_20 | AC | 1,661 ms
98,072 KB |
testcase_21 | AC | 1,823 ms
100,280 KB |
ソースコード
class PrimeFactor(): def __init__(self, n): """ エラトステネス O(N loglog N) """ self.n = n self.table = list(range(n+1)) # 最小素因数のリスト self.table[2::2] = [2]*(n//2) for p in range(3, int(n**0.5) + 2, 2): if self.table[p] == p: for q in range(p * p, n + 1, 2 * p): if self.table[q] == q: self.table[q] = p def is_prime(self, x): """ 素数判定 O(1) """ if x < 2: return False return self.table[x] == x def prime_factors(self, x): """ 素因数分解 O(logN) (試し割りだとO(sqrt(N))) """ res = [] if x < 2: return res while self.table[x] != 1: res.append(self.table[x]) x //= self.table[x] return res def divisors(self, x): """ 約数列挙 x=[1,10**6]の約数全列挙も間に合う """ primes=self.prime_counter(x) P=set([1]) for key, value in primes.items(): Q=[] for p in P: for k in range(value+1): Q.append(p*pow(key,k)) P|=set(Q) P = list(P) P.sort() return P def prime_counter(self, x): """ 素因数分解(個数のリスト) O(logN) {素因数: 個数} の形で返す """ res = dict() if x < 2: return res while self.table[x] != 1: res[self.table[x]] = res.get(self.table[x], 0) + 1 x //= self.table[x] return res def divisors_counter(self, x): """ 約数の個数 O((logN)^2) """ res = 1 for value in self.prime_counter(x).values(): res *= (value+1) return res def prime_gcd(self, X, mod=None): """ n個の最大公約数 X:n個のリスト (O((logN)^2)) """ exponents = self.prime_counter(X[0]) for x in X[1:]: Y = self.prime_counter(x) for prime, exp in exponents.items(): if Y[prime] < exp: exponents[prime] = Y[prime] res = 1 for prime, exp in exponents.items(): res *= pow(prime, exp, mod) if mod == None: return res else: return res % mod def prime_lcm(self, X, mod=None): """ n個の最小公倍数 X:n個のリスト (O((logN)^2)) """ exponents = dict() for x in X: for prime, exp in self.prime_counter(x).items(): if exp > exponents.get(prime, 0): exponents[prime] = exp res = 1 for prime, exp in exponents.items(): res *= pow(prime, exp, mod) if mod == None: return res else: return res % mod def f(x): return x-PF.divisors_counter(x) ##################################################################################################### import sys input = sys.stdin.readline X = int(input()) PF = PrimeFactor(X) tmp=float("inf") res=[] for x in range(1,X): d=abs(f(x)-f(X-x)) if d<tmp: tmp=d res=[(x,X-x)] elif d==tmp: res.append((x,X-x)) for a,b in res: print(a,b)