結果
| 問題 |
No.3033 エルハートの数え上げ
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 20:49:42 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 140 bytes |
| コンパイル時間 | 212 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 65,024 KB |
| 最終ジャッジ日時 | 2025-06-12 20:51:21 |
| 合計ジャッジ時間 | 2,517 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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