結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,344 KB
testcase_01 AC 43 ms
57,472 KB
testcase_02 AC 49 ms
59,648 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 50 ms
59,904 KB
testcase_05 AC 56 ms
61,184 KB
testcase_06 AC 57 ms
61,184 KB
testcase_07 AC 59 ms
61,056 KB
testcase_08 AC 55 ms
61,056 KB
testcase_09 AC 59 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
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]))

for i in range(1,X):
    if abs((i-L[i])-((X-i)-L[X-i]))==cnt:
        print(i,X-i)
0