結果

問題 No.2479 Sum of Squares
ユーザー n_nan_na
提出日時 2023-09-22 23:59:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-07-16 00:32:46
合計ジャッジ時間 2,462 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,912 KB
testcase_01 AC 44 ms
53,952 KB
testcase_02 AC 43 ms
53,280 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 41 ms
52,536 KB
testcase_06 AC 38 ms
52,380 KB
testcase_07 AC 39 ms
54,220 KB
testcase_08 AC 39 ms
52,596 KB
testcase_09 AC 40 ms
53,676 KB
testcase_10 AC 40 ms
53,340 KB
testcase_11 AC 42 ms
52,272 KB
testcase_12 AC 40 ms
53,588 KB
testcase_13 AC 40 ms
53,084 KB
testcase_14 AC 39 ms
52,732 KB
testcase_15 AC 39 ms
52,540 KB
testcase_16 AC 39 ms
52,452 KB
testcase_17 AC 39 ms
52,572 KB
testcase_18 AC 39 ms
53,500 KB
testcase_19 AC 39 ms
52,480 KB
testcase_20 AC 39 ms
52,872 KB
testcase_21 AC 39 ms
53,664 KB
testcase_22 AC 39 ms
53,136 KB
testcase_23 AC 39 ms
51,936 KB
testcase_24 AC 39 ms
52,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = int(input())

A = []
while S > 0:
    k = int(pow(S,0.5)//1)
    A.append(pow(k,2))
    S -= pow(k,2)
    
print(len(A))
print(*A)
0