結果
| 問題 | No.2479 Sum of Squares |
| コンテスト | |
| ユーザー |
310icecrystal
|
| 提出日時 | 2023-09-23 00:43:26 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 242 bytes |
| 記録 | |
| コンパイル時間 | 1,395 ms |
| コンパイル使用メモリ | 95,088 KB |
| 実行使用メモリ | 78,848 KB |
| 最終ジャッジ日時 | 2026-08-13 08:04:47 |
| 合計ジャッジ時間 | 6,581 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 22 |
ソースコード
S = int(input())
ans = []
while S:
OK = 1
NG = 10**10
while NG - OK >= 2:
MID = (OK+NG)//2
if MID*MID <= S:
OK = MID
else:
NG = MID
ans.append(OK*OK)
S -= OK*OK
print(*ans)
310icecrystal