結果

問題 No.63 ポッキーゲーム
ユーザー nohopennohopen
提出日時 2019-02-11 19:14:18
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-07-19 03:56:03
合計ジャッジ時間 1,525 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
16,000 KB
testcase_01 AC 20 ms
16,000 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 21 ms
15,872 KB
testcase_05 AC 21 ms
16,000 KB
testcase_06 AC 21 ms
15,872 KB
testcase_07 AC 21 ms
15,872 KB
testcase_08 AC 21 ms
15,872 KB
testcase_09 AC 22 ms
15,872 KB
testcase_10 AC 21 ms
15,872 KB
testcase_11 AC 21 ms
15,744 KB
testcase_12 AC 20 ms
15,744 KB
testcase_13 WA -
testcase_14 AC 23 ms
16,000 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 21 ms
15,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (poky L K)
  (let ((n (quotient L 2)))
    (cond [(<= (truncate (/ n K)) 1) 0]
          [(= (modulo n K) 1) (* (- (truncate (/ n K)) 1) K)]
          [else (* (truncate (/ n K)) K)])))

#|
(define (create-list n)
  (if (= n 0) '()
      (cons (read) (create-list (- n 1)))))
|#
(define (main args)
  (let* ((L (read))
         (K (read)))
    (print (poky L K))) 0)
0