結果

問題 No.218 経験値1.5倍
ユーザー kohei2019
提出日時 2021-11-15 19:34:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-12-15 02:31:17
合計ジャッジ時間 2,712 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

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

usual = -(-a//b)
notusual = -(-a//c)
if ((usual * 2)//3) >= notusual:
    print('YES')
else:
    print('NO')
0