結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
184
|
| 提出日時 | 2015-12-05 23:47:57 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 54 ms / 2,000 ms |
| + 77µs | |
| コード長 | 151 bytes |
| 記録 | |
| コンパイル時間 | 66 ms |
| コンパイル使用メモリ | 81,280 KB |
| 実行使用メモリ | 81,408 KB |
| 最終ジャッジ日時 | 2026-07-18 00:24:46 |
| 合計ジャッジ時間 | 3,257 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
a = input()
b = input()
c = input()
x1 = a/b + (1 if a%b!=0 else 0)
x2 = a/c + (1 if a%c!=0 else 0)
if x1*2>=x2*3:
print "YES"
else:
print "NO"
184