結果

問題 No.63 ポッキーゲーム
ユーザー Yuzu MashiroYuzu Mashiro
提出日時 2021-04-03 17:26:43
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
実行時間 -
コード長 230 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-06-07 04:26:11
合計ジャッジ時間 7,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
16,128 KB
testcase_01 AC 22 ms
15,872 KB
testcase_02 AC 21 ms
15,872 KB
testcase_03 AC 22 ms
15,872 KB
testcase_04 AC 22 ms
15,872 KB
testcase_05 AC 22 ms
15,872 KB
testcase_06 AC 23 ms
16,000 KB
testcase_07 AC 27 ms
16,000 KB
testcase_08 AC 24 ms
15,872 KB
testcase_09 AC 50 ms
16,128 KB
testcase_10 AC 274 ms
15,872 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