結果

問題 No.218 経験値1.5倍
ユーザー neko_the_shadow
提出日時 2016-09-17 23:23:32
言語 Scheme
(Gauche-0.9.15)
結果
RE  
実行時間 -
コード長 276 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-11-17 08:20:39
合計ジャッジ時間 2,669 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

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

(define (main args)
    (let ((a (read)) (b (read)) (c (read)))
        (display (if (f a b c) "YES" "NO"))
        (newline)))
0