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