結果
| 問題 | No.63 ポッキーゲーム |
| コンテスト | |
| ユーザー |
megumeguro
|
| 提出日時 | 2020-04-11 15:53:37 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 226 bytes |
| 記録 | |
| コンパイル時間 | 511 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 23,204 KB |
| 最終ジャッジ日時 | 2026-04-07 08:48:45 |
| 合計ジャッジ時間 | 9,053 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 TLE * 1 -- * 10 |
ソースコード
# coding: utf-8
l, k = map(int,input().split())
#l = int(input())
#N = int(input())
#W = list(map(int,input().split()))
cnt = 0
while True:
l -= 2 * k
if l > 0:
cnt += 1
else:
break
print(cnt * k)
megumeguro