結果
| 問題 | No.1395 Less Sweet Alchemy |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-14 21:21:44 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 2,000 ms |
| + 410µs | |
| コード長 | 271 bytes |
| 記録 | |
| コンパイル時間 | 255 ms |
| コンパイル使用メモリ | 96,108 KB |
| 実行使用メモリ | 79,064 KB |
| 最終ジャッジ日時 | 2026-08-23 04:23:24 |
| 合計ジャッジ時間 | 2,403 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 |
ソースコード
import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
n,x = list(map(int, input().split()))
c = list(map(int, input().split()))
if min(c)<=x<=max(c):
print("Yes")
else:
print("No")