結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 44 ms
58,752 KB
testcase_03 WA -
testcase_04 AC 43 ms
59,008 KB
testcase_05 AC 47 ms
60,288 KB
testcase_06 AC 46 ms
60,672 KB
testcase_07 AC 46 ms
60,544 KB
testcase_08 AC 45 ms
60,416 KB
testcase_09 AC 46 ms
60,672 KB
testcase_10 AC 47 ms
60,416 KB
testcase_11 AC 177 ms
84,224 KB
testcase_12 AC 274 ms
90,752 KB
testcase_13 AC 300 ms
91,136 KB
testcase_14 AC 297 ms
91,520 KB
testcase_15 AC 251 ms
89,088 KB
testcase_16 AC 144 ms
82,304 KB
testcase_17 AC 179 ms
84,736 KB
testcase_18 AC 252 ms
89,088 KB
testcase_19 AC 247 ms
88,704 KB
testcase_20 AC 260 ms
89,728 KB
testcase_21 AC 294 ms
91,136 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