結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2024-09-03 10:56:40 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 236 bytes |
| 記録 | |
| コンパイル時間 | 224 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 51,968 KB |
| 最終ジャッジ日時 | 2026-04-04 00:10:00 |
| 合計ジャッジ時間 | 1,744 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
a = int(input())
b = int(input())
c = int(input())
# x = a / b
# y = a / c
# if y/x <= 2/3:
# print('YES')
# else:
# print('NO')
x = (a + b - 1) // b
y = (a + c - 1) // c
if y/x <= 2/3:
print('YES')
else:
print('NO')
norioc