結果
| 問題 |
No.3033 エルハートの数え上げ
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 20:55:30 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 140 bytes |
| コンパイル時間 | 294 ms |
| コンパイル使用メモリ | 81,792 KB |
| 実行使用メモリ | 64,896 KB |
| 最終ジャッジ日時 | 2025-06-12 20:59:08 |
| 合計ジャッジ時間 | 2,553 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 20 |
ソースコード
n, m, x = map(int, input().split())
possible_out = min(m, n - x)
min_in_group = m - possible_out
print("YES" if min_in_group >= 3 else "NO")
gew1fw