結果
| 問題 |
No.63 ポッキーゲーム
|
| コンテスト | |
| ユーザー |
gamuogamo5
|
| 提出日時 | 2016-08-30 23:54:43 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 127 bytes |
| コンパイル時間 | 157 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 21,376 KB |
| 最終ジャッジ日時 | 2024-11-14 12:42:56 |
| 合計ジャッジ時間 | 46,287 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 TLE * 5 |
ソースコード
L,K=map(int,input().split())
cnt=0
while 1:
if L-2*K<=0:
break
else:
L=L-2*K
cnt+=K
print(cnt)
gamuogamo5