結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-01-18 22:15:23 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 27 ms / 2,000 ms |
| コード長 | 165 bytes |
| 記録 | |
| コンパイル時間 | 157 ms |
| コンパイル使用メモリ | 85,156 KB |
| 実行使用メモリ | 53,652 KB |
| 最終ジャッジ日時 | 2026-03-05 03:38:49 |
| 合計ジャッジ時間 | 1,899 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
a = int(input())
b = int(input())
c = int(input())
if 2*(a//b if a%b == 0 else a//b+1) >= 3*(a//c if a%c == 0 else a//c+1) :
print("YES")
else:
print("NO")