結果

問題 No.1006 Share an Integer
ユーザー s_shoheis_shohei
提出日時 2020-04-11 15:02:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 78,424 KB
最終ジャッジ日時 2024-09-19 02:29:42
合計ジャッジ時間 3,918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,168 KB
testcase_01 AC 43 ms
54,784 KB
testcase_02 AC 55 ms
65,536 KB
testcase_03 AC 41 ms
54,528 KB
testcase_04 AC 56 ms
67,072 KB
testcase_05 AC 63 ms
72,320 KB
testcase_06 AC 67 ms
73,344 KB
testcase_07 AC 67 ms
73,252 KB
testcase_08 AC 65 ms
72,576 KB
testcase_09 AC 66 ms
73,344 KB
testcase_10 AC 63 ms
73,344 KB
testcase_11 AC 176 ms
77,768 KB
testcase_12 AC 221 ms
77,552 KB
testcase_13 AC 208 ms
77,768 KB
testcase_14 AC 214 ms
77,896 KB
testcase_15 AC 198 ms
77,952 KB
testcase_16 AC 168 ms
78,424 KB
testcase_17 AC 185 ms
77,796 KB
testcase_18 AC 208 ms
77,696 KB
testcase_19 AC 204 ms
77,820 KB
testcase_20 AC 202 ms
77,824 KB
testcase_21 AC 218 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input())

def m_div(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)
    return divisors

from functools import lru_cache
@lru_cache(maxsize=None)
def f(num):
    return num - len(m_div(num))

mn = float("inf")
s=max(1,(x//2)-5000)
e=min(x,(x//2) +5000)
for a in range(s,e):
    b=x-a
    mn=min(mn,abs(f(a)-f(b)))

for a in range(s,e):
    b=x-a
    if abs(f(a)-f(b))==mn:
        print(a,b)
0