結果
問題 |
No.51 やる気の問題
|
ユーザー |
|
提出日時 | 2025-05-11 21:21:43 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 123 bytes |
コンパイル時間 | 402 ms |
コンパイル使用メモリ | 12,032 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2025-05-11 21:21:46 |
合計ジャッジ時間 | 2,699 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 20 |
ソースコード
import math W= int(input()) D= int(input()) for i in range(D+1): today_W= math.floor(W / D**2) W= W - today_W print(W)