結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
togatoga
|
| 提出日時 | 2015-09-04 07:40:59 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 85 ms / 2,000 ms |
| コード長 | 137 bytes |
| コンパイル時間 | 160 ms |
| コンパイル使用メモリ | 77,396 KB |
| 最終ジャッジ日時 | 2025-12-03 16:35:33 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
a = input()
b = input()
c = input()
A = (a + b - 1) / b
B = (a + c - 1) / c
if (B <= A * 2 / 3.0):
print "YES"
else:
print "NO"
togatoga