結果
| 問題 |
No.63 ポッキーゲーム
|
| コンテスト | |
| ユーザー |
fV9TwBhUoa9S3eV
|
| 提出日時 | 2019-09-13 08:54:24 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 166 bytes |
| コンパイル時間 | 81 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 17,564 KB |
| 最終ジャッジ日時 | 2024-07-04 03:43:31 |
| 合計ジャッジ時間 | 8,506 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 TLE * 1 -- * 10 |
ソースコード
# No.63 ポッキーゲーム
s = [int(i) for i in input().split()]
L = s[0]
K = s[1]
times = 0
while L - 2 * K > 0:
times += 1
L -= 2 * K
print(K * times)
fV9TwBhUoa9S3eV