結果
| 問題 |
No.218 経験値1.5倍
|
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2024-09-03 10:51:50 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 126 bytes |
| コンパイル時間 | 305 ms |
| コンパイル使用メモリ | 82,764 KB |
| 実行使用メモリ | 54,192 KB |
| 最終ジャッジ日時 | 2024-09-03 10:51:53 |
| 合計ジャッジ時間 | 2,910 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 WA * 10 |
ソースコード
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')
norioc