結果

問題 No.1006 Share an Integer
ユーザー O2MTO2MT
提出日時 2020-08-15 12:29:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 422 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,520 KB
最終ジャッジ日時 2024-10-10 17:38:20
合計ジャッジ時間 5,527 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 46 ms
58,624 KB
testcase_03 RE -
testcase_04 AC 45 ms
58,496 KB
testcase_05 AC 47 ms
59,392 KB
testcase_06 AC 47 ms
59,392 KB
testcase_07 AC 48 ms
59,264 KB
testcase_08 AC 52 ms
59,392 KB
testcase_09 AC 48 ms
59,392 KB
testcase_10 AC 48 ms
59,648 KB
testcase_11 AC 210 ms
84,352 KB
testcase_12 AC 397 ms
90,752 KB
testcase_13 AC 436 ms
91,520 KB
testcase_14 AC 419 ms
91,392 KB
testcase_15 AC 319 ms
89,472 KB
testcase_16 AC 152 ms
82,176 KB
testcase_17 AC 205 ms
84,608 KB
testcase_18 AC 346 ms
89,216 KB
testcase_19 AC 331 ms
88,576 KB
testcase_20 AC 375 ms
89,600 KB
testcase_21 AC 441 ms
91,392 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(N//2-(floor(sqrt(N))+1), N//2+floor(sqrt(N))+1):
  num = min(num,abs((i-l[i])-(N-i-l[N-i])))

for i in range(N//2-(floor(sqrt(N))+1), N//2+floor(sqrt(N))+1):
  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