結果

問題 No.1006 Share an Integer
ユーザー ntudantuda
提出日時 2024-09-01 20:37:32
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,334 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 192,760 KB
最終ジャッジ日時 2024-09-01 20:37:37
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,756 KB
testcase_01 AC 38 ms
52,952 KB
testcase_02 AC 44 ms
59,000 KB
testcase_03 RE -
testcase_04 AC 49 ms
62,776 KB
testcase_05 AC 57 ms
67,460 KB
testcase_06 AC 57 ms
67,104 KB
testcase_07 AC 61 ms
69,788 KB
testcase_08 AC 57 ms
68,828 KB
testcase_09 AC 59 ms
68,760 KB
testcase_10 AC 60 ms
69,748 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def seachPrimeNum(N):
    max = int(N ** 0.5)
    seachList = [i for i in range(2, N + 1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum


def adic(dic, x):
    if x in dic:
        dic[x] += 1
    else:
        dic[x] = 1
    return


def factorization(x):
    dic = {}
    for p in PL:
        if x in PL:
            adic(dic, x)
            return dic
        while x % p == 0:
            adic(dic, p)
            x //= p
        if x == 1:
            return dic


# 約数の数
def N_divisors(x):
    dic = factorization(x)
    ret = 1
    for v in dic.values():
        ret *= (v + 1)
    return ret


X = int(input())
l = max(1, X // 2 - 2000)
r = min(X-1,X//2 + 2000)

PL = seachPrimeNum(r)

L = []
difmin = X
mid = X // 2
for A in range(l, X // 2 + 1):
    B = X - A
    FA = A - N_divisors(A)
    FB = B - N_divisors(B)
    if abs(FA - FB) < difmin:
        difmin = abs(FA - FB)
        L = [A]
    elif abs(FA - FB) == difmin:
        L.append(A)
ans = []
for l in L:
    if X % 2 == 0 and X // 2 == l:
        ans.append((l, l))
    else:
        ans.append((l, X - l))
        ans.append((X - l, l))
ans.sort()
for a in ans:
    print(*a)
0