結果

問題 No.1006 Share an Integer
ユーザー syunsukesyunsuke
提出日時 2020-03-19 17:20:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 407 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 77,028 KB
最終ジャッジ日時 2024-05-08 03:18:59
合計ジャッジ時間 4,504 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,600 KB
testcase_01 AC 44 ms
58,412 KB
testcase_02 AC 48 ms
60,288 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 48 ms
60,160 KB
testcase_05 AC 56 ms
61,568 KB
testcase_06 AC 57 ms
61,568 KB
testcase_07 AC 61 ms
61,568 KB
testcase_08 AC 56 ms
61,184 KB
testcase_09 AC 58 ms
61,056 KB
testcase_10 AC 55 ms
61,312 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):
    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])
0