結果

問題 No.2479 Sum of Squares
ユーザー なえしらなえしら
提出日時 2023-09-22 21:34:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 53,628 KB
最終ジャッジ日時 2024-07-08 12:17:19
合計ジャッジ時間 2,004 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,976 KB
testcase_01 AC 31 ms
52,360 KB
testcase_02 AC 32 ms
52,076 KB
testcase_03 AC 31 ms
52,268 KB
testcase_04 AC 30 ms
53,252 KB
testcase_05 AC 31 ms
53,152 KB
testcase_06 AC 31 ms
52,752 KB
testcase_07 AC 32 ms
51,816 KB
testcase_08 AC 32 ms
52,492 KB
testcase_09 AC 32 ms
53,244 KB
testcase_10 AC 32 ms
51,876 KB
testcase_11 AC 32 ms
53,360 KB
testcase_12 AC 33 ms
53,628 KB
testcase_13 AC 32 ms
52,068 KB
testcase_14 AC 30 ms
52,672 KB
testcase_15 AC 34 ms
51,888 KB
testcase_16 AC 32 ms
52,392 KB
testcase_17 AC 32 ms
52,808 KB
testcase_18 AC 32 ms
52,156 KB
testcase_19 AC 32 ms
52,276 KB
testcase_20 AC 30 ms
52,432 KB
testcase_21 AC 30 ms
53,180 KB
testcase_22 AC 31 ms
52,964 KB
testcase_23 AC 30 ms
52,996 KB
testcase_24 AC 32 ms
52,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bis(ok, ng):
  def is_ok(md):
    return md**2 <= S
  while abs(ok - ng) > 1:
    md = (ng + ok) // 2
    if is_ok(md): ok = md
    else: ng = md
  return ok

S = int(input())
A = []
while S:
  a = bis(1, 10**9+1)
  A.append(a**2)
  S -= a**2
print(len(A))
print(*A)
0