結果
| 問題 | No.63 ポッキーゲーム |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-11-24 00:41:07 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 118 bytes |
| 記録 | |
| コンパイル時間 | 485 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 23,288 KB |
| 最終ジャッジ日時 | 2026-04-03 15:41:37 |
| 合計ジャッジ時間 | 9,142 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge5_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 TLE * 1 -- * 10 |
ソースコード
l,k = input().split()
l = int(l)
k = int(k)
total = 0
while l>k*2:
l -= k*2
total += k
print(total)