結果

問題 No.1006 Share an Integer
ユーザー O2MTO2MT
提出日時 2020-08-15 12:32:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 91,520 KB
最終ジャッジ日時 2024-10-10 17:38:30
合計ジャッジ時間 4,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 42 ms
59,136 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 43 ms
59,264 KB
testcase_05 AC 44 ms
59,648 KB
testcase_06 AC 44 ms
60,032 KB
testcase_07 AC 43 ms
59,776 KB
testcase_08 AC 42 ms
59,648 KB
testcase_09 AC 43 ms
59,776 KB
testcase_10 AC 45 ms
59,648 KB
testcase_11 AC 158 ms
84,672 KB
testcase_12 AC 298 ms
90,772 KB
testcase_13 AC 264 ms
91,520 KB
testcase_14 AC 272 ms
91,520 KB
testcase_15 AC 228 ms
89,728 KB
testcase_16 AC 124 ms
82,560 KB
testcase_17 AC 166 ms
84,864 KB
testcase_18 AC 235 ms
89,544 KB
testcase_19 AC 234 ms
89,088 KB
testcase_20 AC 245 ms
89,984 KB
testcase_21 AC 268 ms
91,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt,floor
N = int(input())
l = [0 for _ in range(N+1)]
ans = []
num = 10**9
for i in range(1,N+1):
  for j in range(i,N,i):
    l[j] += 1

for i in range(max(0,N//2-(floor(sqrt(N)))), N//2+floor(sqrt(N))):
  num = min(num,abs((i-l[i])-(N-i-l[N-i])))

for i in range(N//2-(floor(sqrt(N))), N//2+floor(sqrt(N))):
  if num == abs((i-l[i])-(N-i-l[N-i])):
    ans.append((i,N-i))

for i,j in ans:
 print(i,j)
0