結果

問題 No.1006 Share an Integer
ユーザー syunsukesyunsuke
提出日時 2020-03-19 17:25:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,136 KB
最終ジャッジ日時 2024-05-08 03:19:04
合計ジャッジ時間 4,549 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
57,472 KB
testcase_01 AC 46 ms
57,600 KB
testcase_02 AC 53 ms
59,776 KB
testcase_03 WA -
testcase_04 AC 52 ms
59,776 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 56 ms
60,416 KB
testcase_09 AC 60 ms
61,056 KB
testcase_10 AC 57 ms
60,928 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

X=int(input())
L=[1 for i in range(X+1)]

for i in range(2,X+1):
    L[i]+=1
    for j in range(2,X+1):
        if i*j<=X:
            L[i*j]+=1
#print(L)
cnt=10**9
ans=[]
for i in range(1,X//2+1):
    if abs((i-L[i])-(X-i-L[X-i]))<cnt:
        cnt=abs((i-L[i])-(X-i-L[X-i]))
        ans=[[i,X-i]]
    elif abs((i-L[i])-(X-i-L[X-i]))==cnt:
        ans.append([i,X-i])
for i in range(len(ans)):
    print(*ans[i])
for i in range(len(ans)):
    print(ans[-1-i][1],ans[-1-i][0])
0