結果
| 問題 | No.1395 Less Sweet Alchemy |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2021-08-23 05:48:27 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 26 ms / 2,000 ms |
| + 551µs | |
| コード長 | 171 bytes |
| 記録 | |
| コンパイル時間 | 70 ms |
| コンパイル使用メモリ | 80,640 KB |
| 実行使用メモリ | 54,400 KB |
| 最終ジャッジ日時 | 2026-09-20 03:01:40 |
| 合計ジャッジ時間 | 1,627 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 |
ソースコード
n, x = map(int, input().split())
clst = list(map(int, input().split()))
min_c = min(clst)
max_c = max(clst)
if min_c <= x <= max_c:
print("Yes")
else:
print("No")