結果

問題 No.2479 Sum of Squares
ユーザー さんしゃいんハルヒさんしゃいんハルヒ
提出日時 2023-09-30 20:10:33
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 126 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 65,644 KB
最終ジャッジ日時 2024-07-23 14:00:00
合計ジャッジ時間 2,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,012 KB
testcase_01 AC 37 ms
52,012 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 38 ms
52,132 KB
testcase_06 AC 37 ms
53,220 KB
testcase_07 AC 39 ms
53,288 KB
testcase_08 AC 39 ms
52,196 KB
testcase_09 AC 38 ms
53,680 KB
testcase_10 AC 40 ms
52,476 KB
testcase_11 AC 38 ms
52,948 KB
testcase_12 AC 38 ms
53,436 KB
testcase_13 AC 38 ms
53,000 KB
testcase_14 AC 38 ms
53,360 KB
testcase_15 AC 39 ms
52,604 KB
testcase_16 AC 38 ms
53,264 KB
testcase_17 AC 38 ms
53,512 KB
testcase_18 AC 38 ms
52,072 KB
testcase_19 AC 37 ms
53,312 KB
testcase_20 AC 37 ms
53,388 KB
testcase_21 AC 37 ms
52,500 KB
testcase_22 AC 37 ms
52,016 KB
testcase_23 AC 37 ms
52,460 KB
testcase_24 AC 39 ms
52,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[]
for i in range(15):
	b=int(n**0.5)
	bb=b**2
	n-=bb
	a.append(bb)
	if n==0:
		break
print(len(a))
print(*a)
0