結果

問題 No.1006 Share an Integer
ユーザー titiatitia
提出日時 2020-03-06 21:37:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 99,316 KB
最終ジャッジ日時 2024-10-14 04:36:08
合計ジャッジ時間 9,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
91,008 KB
testcase_01 AC 316 ms
91,232 KB
testcase_02 AC 309 ms
91,520 KB
testcase_03 AC 329 ms
90,748 KB
testcase_04 AC 322 ms
91,136 KB
testcase_05 AC 331 ms
90,880 KB
testcase_06 AC 330 ms
91,084 KB
testcase_07 AC 344 ms
91,492 KB
testcase_08 AC 337 ms
90,740 KB
testcase_09 AC 349 ms
91,524 KB
testcase_10 AC 327 ms
91,008 KB
testcase_11 AC 360 ms
95,340 KB
testcase_12 AC 377 ms
98,432 KB
testcase_13 AC 384 ms
99,316 KB
testcase_14 AC 378 ms
98,920 KB
testcase_15 AC 369 ms
97,876 KB
testcase_16 AC 319 ms
94,736 KB
testcase_17 AC 336 ms
95,444 KB
testcase_18 AC 336 ms
98,080 KB
testcase_19 AC 339 ms
97,824 KB
testcase_20 AC 367 ms
97,980 KB
testcase_21 AC 372 ms
99,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X=int(input())

D=[1]*(2*10**6+1)
for i in range(2,2*10**6+1):
    for j in range(i,2*10**6+1,i):
        D[j]+=1

ANS=[0]*(X//2+2)
for i in range(X//2+2):
    ANS[i]=abs((i-D[i])-((X-i)-(D[X-i])))

MIN=min(ANS)

A=[]
for i in range(X//2+1):
    if ANS[i]==MIN:
        A.append((i,X-i))
        A.append((X-i,i))

for x,y in sorted(set(A)):
    print(x,y)
0