結果

問題 No.1006 Share an Integer
ユーザー MineMine
提出日時 2020-09-09 15:31:38
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,061 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 93,584 KB
最終ジャッジ日時 2024-12-15 06:51:54
合計ジャッジ時間 20,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,132 KB
testcase_01 AC 43 ms
54,516 KB
testcase_02 AC 57 ms
64,824 KB
testcase_03 AC 42 ms
54,128 KB
testcase_04 AC 62 ms
67,500 KB
testcase_05 AC 89 ms
76,968 KB
testcase_06 AC 88 ms
77,076 KB
testcase_07 AC 90 ms
77,240 KB
testcase_08 AC 70 ms
71,992 KB
testcase_09 AC 94 ms
77,112 KB
testcase_10 AC 86 ms
77,260 KB
testcase_11 AC 1,161 ms
86,032 KB
testcase_12 AC 1,937 ms
92,640 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,695 ms
90,804 KB
testcase_16 AC 891 ms
83,992 KB
testcase_17 AC 1,183 ms
86,260 KB
testcase_18 AC 1,748 ms
90,808 KB
testcase_19 AC 1,704 ms
90,260 KB
testcase_20 AC 1,837 ms
91,472 KB
testcase_21 AC 1,995 ms
93,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
def Sieve_of_Eratosthenes(maxA):
    lst = [-1]*(maxA+1)
    lst[0] = 0
    lst[1] = 1
    for i in range(2, maxA+1):
        if lst[i] == -1:
            for g in range(i, maxA+1, i):
                if lst[g] == -1:
                    lst[g] = i
    return lst

def factorization(n):  # 「n = 1」はダメ!!!
    d = defaultdict(int)
    now = n
    while True:
        if now == lst[now]:
            if now != 1:
                d[now] += 1
            break
        r = lst[now]
        while now % r == 0:
            now //= r
            d[r] += 1
    ans = 1
    for i, m in d.items():
        ans *= (m+1)
    return ans

x = int(input())
lst = Sieve_of_Eratosthenes(x)

MIN = float("inf")
ans_list = []
for i in range(1, x):
    a = i
    b = x-i
    fa = a-factorization(a)
    fb = b-factorization(b)
    dif = abs(fa-fb)
    if MIN > dif:
        MIN = dif
        ans_list = []
        ans_list.append((a, b))
    elif MIN == dif:
        ans_list.append((a, b))

for a, b in ans_list:
    print(a, b)
0