結果

問題 No.2479 Sum of Squares
ユーザー H20H20
提出日時 2023-09-23 18:09:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-07-16 18:03:14
合計ジャッジ時間 2,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,496 KB
testcase_01 AC 39 ms
53,224 KB
testcase_02 AC 39 ms
52,264 KB
testcase_03 AC 39 ms
52,256 KB
testcase_04 AC 40 ms
54,028 KB
testcase_05 AC 40 ms
52,676 KB
testcase_06 AC 39 ms
53,400 KB
testcase_07 AC 39 ms
52,388 KB
testcase_08 AC 39 ms
52,236 KB
testcase_09 AC 41 ms
52,072 KB
testcase_10 AC 39 ms
53,756 KB
testcase_11 AC 38 ms
52,284 KB
testcase_12 AC 39 ms
52,932 KB
testcase_13 AC 39 ms
53,140 KB
testcase_14 AC 40 ms
53,764 KB
testcase_15 AC 39 ms
52,500 KB
testcase_16 AC 39 ms
52,332 KB
testcase_17 AC 40 ms
52,344 KB
testcase_18 AC 40 ms
51,884 KB
testcase_19 AC 39 ms
53,396 KB
testcase_20 AC 39 ms
53,388 KB
testcase_21 AC 39 ms
52,532 KB
testcase_22 AC 38 ms
53,944 KB
testcase_23 AC 38 ms
53,220 KB
testcase_24 AC 39 ms
52,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
S = int(input())
ANS = []
while S>0:
    ANS.append(math.isqrt(S)**2)
    S-=ANS[-1]
print(len(ANS))
print(*ANS)
0