結果

問題 No.1006 Share an Integer
ユーザー DrDrpilotDrDrpilot
提出日時 2022-06-18 18:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 91,804 KB
最終ジャッジ日時 2024-10-10 09:42:19
合計ジャッジ時間 7,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
91,576 KB
testcase_01 AC 236 ms
91,008 KB
testcase_02 AC 243 ms
91,260 KB
testcase_03 AC 255 ms
91,332 KB
testcase_04 AC 253 ms
91,008 KB
testcase_05 AC 297 ms
91,804 KB
testcase_06 AC 249 ms
91,420 KB
testcase_07 AC 271 ms
91,420 KB
testcase_08 AC 243 ms
91,376 KB
testcase_09 AC 241 ms
91,324 KB
testcase_10 AC 238 ms
91,348 KB
testcase_11 AC 275 ms
91,364 KB
testcase_12 AC 276 ms
91,692 KB
testcase_13 AC 296 ms
91,596 KB
testcase_14 AC 278 ms
91,432 KB
testcase_15 AC 287 ms
91,548 KB
testcase_16 AC 249 ms
91,420 KB
testcase_17 AC 268 ms
91,616 KB
testcase_18 AC 263 ms
91,500 KB
testcase_19 AC 273 ms
91,444 KB
testcase_20 AC 263 ms
91,472 KB
testcase_21 AC 304 ms
91,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input())
lis=[0]*(2*10**6+1)
for i in range(1,2*10**6+1):
    for j in range(i,2*10**6+1,i):
        lis[j]+=1
ans=10**18
for a in range(1,x):
    b=x-a
    f_a=a-lis[a];f_b=b-lis[b]
    ans=min(ans,abs(f_a-f_b))
for a in range(1,x):
    b=x-a
    if abs(a-lis[a]-b+lis[b])==ans:
        print(a,b)
0