結果

問題 No.1006 Share an Integer
ユーザー rlangevinrlangevin
提出日時 2023-01-12 08:53:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 920 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,136 KB
最終ジャッジ日時 2024-12-23 02:22:46
合計ジャッジ時間 6,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 39 ms
51,688 KB
testcase_02 AC 44 ms
58,752 KB
testcase_03 WA -
testcase_04 AC 48 ms
59,008 KB
testcase_05 AC 49 ms
60,928 KB
testcase_06 AC 48 ms
60,416 KB
testcase_07 AC 46 ms
60,416 KB
testcase_08 AC 54 ms
60,544 KB
testcase_09 AC 46 ms
60,416 KB
testcase_10 AC 52 ms
60,544 KB
testcase_11 AC 182 ms
84,096 KB
testcase_12 AC 274 ms
90,484 KB
testcase_13 AC 295 ms
90,864 KB
testcase_14 AC 305 ms
91,136 KB
testcase_15 AC 254 ms
88,896 KB
testcase_16 AC 149 ms
81,976 KB
testcase_17 AC 198 ms
84,400 KB
testcase_18 AC 264 ms
89,124 KB
testcase_19 AC 247 ms
88,316 KB
testcase_20 AC 268 ms
89,308 KB
testcase_21 AC 292 ms
90,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
    return x - d[x]

X = int(input())
d = [0] * (X + 1)
for i in range(1, X + 1):
    for j in range(i, X + 1, i):
        d[j] += 1

ans = []
pre = 10 ** 18
for i in range(1, X + 1):
    v = abs(f(i) - f(X - i))
    if v > pre:
        continue
    elif v == pre:
        ans.append(i)
    else:
        pre = v
        ans = []
        ans.append(i)

for a in ans:
    print(a, X - a)
0