結果

問題 No.218 経験値1.5倍
ユーザー wholekeik
提出日時 2017-06-18 09:38:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 150 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-01 19:31:46
合計ジャッジ時間 2,310 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13 WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

a, b, c = int(input()), int(input()), int(input())

b_ = math.ceil(a / b)
c_ = math.ceil(a / c)

print('YES' if 3 * c <= 2 * b else 'NO')
0