結果
| 問題 |
No.3033 エルハートの数え上げ
|
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-04-15 23:52:10 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 174 bytes |
| コンパイル時間 | 237 ms |
| コンパイル使用メモリ | 82,088 KB |
| 実行使用メモリ | 66,700 KB |
| 最終ジャッジ日時 | 2025-04-15 23:53:29 |
| 合計ジャッジ時間 | 2,244 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 20 |
ソースコード
n, m, x = map(int, input().split())
liars_total = n - m
max_liars_in_group = min(x, liars_total)
min_honest = x - max_liars_in_group
print("YES" if min_honest >= 3 else "NO")
lam6er