結果
| 問題 | 
                            No.63 ポッキーゲーム
                             | 
                    
| コンテスト | |
| ユーザー | 
                             neko_the_shadow
                         | 
                    
| 提出日時 | 2017-01-15 19:10:31 | 
| 言語 | Scheme  (Gauche-0.9.15)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 204 bytes | 
| コンパイル時間 | 54 ms | 
| コンパイル使用メモリ | 6,820 KB | 
| 実行使用メモリ | 16,256 KB | 
| 最終ジャッジ日時 | 2024-12-21 13:45:44 | 
| 合計ジャッジ時間 | 1,415 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | RE * 22 | 
ソースコード
(print
    (let* ((l (read)) (k (read)))
        (receive
            (div mod)
            (div-and-mod l (* k 2))
            (if (zero? mod)
                (* (- div 1) k)
                (* div k))))
            
            
            
        
            
neko_the_shadow