結果

問題 No.63 ポッキーゲーム
ユーザー Rin
提出日時 2015-09-08 16:40:00
言語 Scheme
(Gauche-0.9.15)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-07-19 04:58:40
合計ジャッジ時間 1,342 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (System.out.println x)
  (begin
    (display x)
    (newline)
  )
)

(let (
      (L (read))
      (K (read))
     )
  (System.out.println (inexact->exact (* (floor (- (/ L (* K 2)) 0.1))  K)))
)
0