結果

問題 No.1006 Share an Integer
ユーザー s_shoheis_shohei
提出日時 2020-04-11 14:53:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 429 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 83,440 KB
最終ジャッジ日時 2024-09-19 02:03:37
合計ジャッジ時間 4,771 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,032 KB
testcase_01 AC 39 ms
53,824 KB
testcase_02 AC 55 ms
64,496 KB
testcase_03 AC 39 ms
53,496 KB
testcase_04 AC 53 ms
65,744 KB
testcase_05 AC 69 ms
73,212 KB
testcase_06 AC 74 ms
73,528 KB
testcase_07 AC 74 ms
74,560 KB
testcase_08 AC 68 ms
72,704 KB
testcase_09 AC 74 ms
74,592 KB
testcase_10 AC 70 ms
73,600 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 #

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

def f(num):
    return num - len(m_div(num))

mn = float("inf")
for a in range(1,x):
    b=x-a
    mn=min(mn,abs(f(a)-f(b)))

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