結果
| 問題 |
No.51 やる気の問題
|
| コンテスト | |
| ユーザー |
turner18_jp
|
| 提出日時 | 2017-12-10 18:15:02 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 78 ms / 5,000 ms |
| コード長 | 107 bytes |
| コンパイル時間 | 82 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-11-30 11:19:31 |
| 合計ジャッジ時間 | 1,894 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
import math w = int(input()) d = int(input()) for i in range(d-1): w -= int(w/(d**2)) d -= 1 print(w)
turner18_jp