結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-09-13 13:10:51 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 59 ms / 2,000 ms |
| + 629µs | |
| コード長 | 242 bytes |
| 記録 | |
| コンパイル時間 | 67 ms |
| コンパイル使用メモリ | 81,280 KB |
| 実行使用メモリ | 81,408 KB |
| 最終ジャッジ日時 | 2026-07-17 21:08:12 |
| 合計ジャッジ時間 | 3,511 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
from math import ceil
expformax = float(raw_input())
expbyitem = float(raw_input())
expbycamp = float(raw_input())
m = ceil(expformax / expbyitem)
n = ceil(expformax / expbycamp)
if int((m * 2)/3) >= n:
print 'YES'
else:
print 'NO'