結果

問題 No.1006 Share an Integer
ユーザー yaumu3yaumu3
提出日時 2021-03-06 11:25:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,512 ms / 2,000 ms
コード長 1,475 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 97,812 KB
最終ジャッジ日時 2024-10-08 06:22:42
合計ジャッジ時間 16,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
66,944 KB
testcase_01 AC 62 ms
67,072 KB
testcase_02 AC 69 ms
70,652 KB
testcase_03 AC 60 ms
67,328 KB
testcase_04 AC 75 ms
73,728 KB
testcase_05 AC 97 ms
78,080 KB
testcase_06 AC 102 ms
78,464 KB
testcase_07 AC 108 ms
78,968 KB
testcase_08 AC 99 ms
78,208 KB
testcase_09 AC 104 ms
78,592 KB
testcase_10 AC 102 ms
78,208 KB
testcase_11 AC 914 ms
89,548 KB
testcase_12 AC 1,433 ms
95,812 KB
testcase_13 AC 1,511 ms
96,048 KB
testcase_14 AC 1,507 ms
97,812 KB
testcase_15 AC 1,350 ms
94,808 KB
testcase_16 AC 783 ms
87,724 KB
testcase_17 AC 959 ms
90,120 KB
testcase_18 AC 1,308 ms
95,044 KB
testcase_19 AC 1,246 ms
93,584 KB
testcase_20 AC 1,370 ms
95,116 KB
testcase_21 AC 1,512 ms
96,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List
from collections import Counter


class SmallestPrimeFactors:
    def __init__(self, n: int) -> None:
        self.spf = list(range(n + 1))
        self.spf[0] = -1
        self.spf[1] = -1
        for i in range(2, int(n ** 0.5) + 1):
            if self.spf[i] == i:
                for j in range(i * i, n + 1, i):
                    if self.spf[j] == j:
                        self.spf[j] = i

    def is_prime(self, x: int) -> bool:
        assert x < len(self.spf)
        return self.spf[x] == x

    def __traverse(self, x: int) -> List[int]:
        if self.spf[x] == x:
            return [x]
        nxt = x // self.spf[x]
        return self.__traverse(nxt) + [self.spf[x]]

    def factor(self, x: int) -> List[int]:
        assert x < len(self.spf)
        if x < 2:
            return []
        res = []
        while True:
            if self.is_prime(x):
                res.append(x)
                break
            res.append(self.spf[x])
            x //= self.spf[x]
        return res


def f(x):
    res = 1
    for v in Counter(spf.factor(x)).values():
        res *= v + 1
    return x - res


x = int(input())
spf = SmallestPrimeFactors(x)
ans = set()
cur_min = 1 << 62
for i in range(1, x // 2 + 1):
    a, b = i, x - i
    tmp = abs(f(a) - f(b))
    if tmp < cur_min:
        ans = {(a, b), (b, a)}
        cur_min = tmp
    elif tmp == cur_min:
        ans |= {(a, b), (b, a)}
for a, b in sorted(ans):
    print(a, b)
0