結果
| 問題 | No.1395 Less Sweet Alchemy |
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2021-02-14 22:00:35 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 59 ms / 2,000 ms |
| + 417µs | |
| コード長 | 114 bytes |
| 記録 | |
| コンパイル時間 | 234 ms |
| コンパイル使用メモリ | 96,236 KB |
| 実行使用メモリ | 79,064 KB |
| 最終ジャッジ日時 | 2026-08-23 05:01:00 |
| 合計ジャッジ時間 | 2,498 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 |
ソースコード
N,X=map(int,input().split())
C=set(map(int,input().split()))
print("Yes" if min(C)<X<max(C) or (X in C) else "No")
Kazun