結果
問題 |
No.51 やる気の問題
|
ユーザー |
|
提出日時 | 2024-12-19 14:28:29 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 221 bytes |
コンパイル時間 | 398 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-19 14:28:32 |
合計ジャッジ時間 | 2,397 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 20 |
ソースコード
def main(): w = int(input()) d = int(input()) rest_w = w while d > 0: pow = int(w / d**2) rest_w = rest_w - pow d -= 1 print(rest_w) if __name__ == "__main__": main()