結果

問題 No.63 ポッキーゲーム
ユーザー Yuzu MashiroYuzu Mashiro
提出日時 2021-04-03 17:26:43
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
実行時間 -
コード長 230 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 5,304 KB
実行使用メモリ 16,068 KB
最終ジャッジ日時 2023-08-26 09:10:31
合計ジャッジ時間 7,612 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
11,680 KB
testcase_01 AC 18 ms
11,760 KB
testcase_02 AC 17 ms
11,652 KB
testcase_03 AC 18 ms
11,916 KB
testcase_04 AC 18 ms
11,792 KB
testcase_05 AC 18 ms
11,772 KB
testcase_06 AC 18 ms
11,712 KB
testcase_07 AC 22 ms
11,780 KB
testcase_08 AC 21 ms
11,760 KB
testcase_09 AC 48 ms
11,908 KB
testcase_10 AC 282 ms
11,648 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

(define-values (l k)
 (apply values (map string->number (string-split (read-line) " "))))

(print (* k (let loop ((count 0))
              (cond ((>= (* (+ count 1) 2 k) l) count)
                    (else (loop (+ count 1)))))))
0