結果

問題 No.218 経験値1.5倍
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-09-17 23:28:38
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-12-29 15:49:08
合計ジャッジ時間 2,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (f a b c)
    (let ((normal (ceiling (/ a b)))
          (special (ceiling (/ a c))))
        (>= (* normal (/ 2 3))
            special)))

(define (MAIN)
    (let ((a (read)) (b (read)) (c (read)))
        (display (if (f a b c) "YES" "NO"))
        (newline)))

(MAIN)
0