結果
問題 | No.2479 Sum of Squares |
ユーザー |
![]() |
提出日時 | 2023-09-22 21:22:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 96 bytes |
コンパイル時間 | 142 ms |
コンパイル使用メモリ | 81,928 KB |
実行使用メモリ | 54,120 KB |
最終ジャッジ日時 | 2024-07-08 12:01:57 |
合計ジャッジ時間 | 2,110 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 WA * 2 |
ソースコード
s=int(input())a=[]while s>0:a+=[int(s**0.5)**2]s-=int(s**0.5)**2print(len(a))print(*a)