結果
| 問題 | 
                            No.63 ポッキーゲーム
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-07-22 21:46:58 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 213 bytes | 
| コンパイル時間 | 328 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-06-22 15:18:48 | 
| 合計ジャッジ時間 | 1,545 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 8 WA * 14 | 
ソースコード
# coding:utf-8
L, K = map(int,input().split())
haruka_K = 0
yuu_K = 0
K_length = L // (2 * K)
nokori_L = L % (2 * K)
if L <= 2 * K:
    print(0)
else:
    haruka_K = (L // 2) + nokori_L
    print(L - haruka_K)