結果
| 問題 |
No.218 経験値1.5倍
|
| コンテスト | |
| ユーザー |
ohana
|
| 提出日時 | 2023-10-23 14:50:49 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 39 ms / 2,000 ms |
| コード長 | 114 bytes |
| コンパイル時間 | 403 ms |
| コンパイル使用メモリ | 82,284 KB |
| 実行使用メモリ | 53,696 KB |
| 最終ジャッジ日時 | 2024-09-22 10:08:42 |
| 合計ジャッジ時間 | 2,283 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
a = int(input())
b = int(input())
c = int(input())
t = -(-a // b)
print("YES" if a <= c * (t * 2 // 3) else "NO")
ohana