結果
| 問題 |
No.63 ポッキーゲーム
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-02-02 11:08:48 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 155 bytes |
| コンパイル時間 | 250 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 21,376 KB |
| 最終ジャッジ日時 | 2024-12-31 00:26:24 |
| 合計ジャッジ時間 | 46,158 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 TLE * 5 |
ソースコード
l, k = map(int, input().split())
count = 0
while 1:
if l - 2 * k > 0:
l = l - 2 * k
count += 1
else:
break
print(k * count)