結果

問題 No.338 アンケート機能
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-03-14 15:29:46
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 25,728 KB
最終ジャッジ日時 2024-11-08 03:07:13
合計ジャッジ時間 10,533 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
25,344 KB
testcase_01 AC 293 ms
25,472 KB
testcase_02 AC 295 ms
25,600 KB
testcase_03 AC 291 ms
25,600 KB
testcase_04 AC 293 ms
25,600 KB
testcase_05 AC 294 ms
25,472 KB
testcase_06 AC 295 ms
25,600 KB
testcase_07 AC 292 ms
25,600 KB
testcase_08 AC 293 ms
25,472 KB
testcase_09 AC 294 ms
25,600 KB
testcase_10 AC 294 ms
25,344 KB
testcase_11 AC 293 ms
25,472 KB
testcase_12 AC 294 ms
25,472 KB
testcase_13 AC 290 ms
25,600 KB
testcase_14 AC 292 ms
25,600 KB
testcase_15 AC 299 ms
25,728 KB
testcase_16 AC 296 ms
25,472 KB
testcase_17 AC 293 ms
25,472 KB
testcase_18 AC 299 ms
25,600 KB
testcase_19 AC 291 ms
25,600 KB
testcase_20 AC 292 ms
25,600 KB
testcase_21 AC 290 ms
25,472 KB
testcase_22 AC 292 ms
25,600 KB
testcase_23 AC 290 ms
25,600 KB
testcase_24 AC 294 ms
25,600 KB
testcase_25 AC 293 ms
25,472 KB
testcase_26 AC 291 ms
25,472 KB
testcase_27 AC 293 ms
25,600 KB
testcase_28 AC 290 ms
25,472 KB
testcase_29 AC 289 ms
25,344 KB
testcase_30 AC 295 ms
25,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use srfi-42)
(define (round-up-on-5 x) (truncate->exact (+ x (/ 1 2))))
(define (comp-min-a+b a0 b0 . max-a-b-opt)
    (let ((max-a-b (get-optional max-a-b-opt 500)))
        (min-ec
            (: a max-a-b)
            (: b max-a-b)
            (:let s (+ a b))
            (not (= s 0))
            (and
                (= a0 (round-up-on-5 (/ (* 100 a) s)))
                (= b0 (round-up-on-5 (/ (* 100 b) s))))
            s)))
(let* ((a0 (read)) (b0 (read)))
    (print (comp-min-a+b a0 b0)))
0