結果

問題 No.1006 Share an Integer
ユーザー FromBooskaFromBooska
提出日時 2023-03-15 21:46:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 62,020 KB
最終ジャッジ日時 2024-09-18 08:55:31
合計ジャッジ時間 2,226 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,676 KB
testcase_01 AC 39 ms
53,488 KB
testcase_02 AC 43 ms
60,040 KB
testcase_03 AC 38 ms
53,324 KB
testcase_04 AC 44 ms
59,716 KB
testcase_05 AC 44 ms
60,308 KB
testcase_06 AC 46 ms
61,472 KB
testcase_07 AC 46 ms
61,500 KB
testcase_08 AC 45 ms
60,348 KB
testcase_09 AC 45 ms
59,484 KB
testcase_10 AC 47 ms
60,984 KB
testcase_11 AC 69 ms
60,032 KB
testcase_12 AC 74 ms
59,916 KB
testcase_13 AC 74 ms
61,032 KB
testcase_14 AC 75 ms
61,112 KB
testcase_15 AC 72 ms
60,096 KB
testcase_16 AC 64 ms
59,928 KB
testcase_17 AC 69 ms
61,816 KB
testcase_18 AC 74 ms
60,828 KB
testcase_19 AC 72 ms
61,256 KB
testcase_20 AC 73 ms
62,020 KB
testcase_21 AC 74 ms
59,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Xまでの約数全列挙をしていて間に合うのだろうか
# やはりTLEした
# しかし例を見れば明らかなようにX//2付近にしか解はない

# 約数個数def
def divisor_count(n):
    count = 0
    i = 1
    while i*i <= n:
        if n % i == 0:
            count += 1
            if i != n // i:
                count += 1
        i += 1
    return count

X = int(input())

mn = 10**10
mn_set = set()
howmany = 1000
for a in range(X//2, max(0, X//2-howmany), -1):
    b = X - a
    calc = abs(a - divisor_count(a) - b + divisor_count(b))
    if calc < mn:
        mn = calc
        mn_set = set()
        mn_set.add((a, b))
        mn_set.add((b, a))
    elif calc == mn:
        mn_set.add((a, b))
        mn_set.add((b, a))
mn_list = sorted(list(mn_set))
        
#print(mn_list)
#print('mn', mn)

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