結果
| 問題 | No.1395 Less Sweet Alchemy |
| コンテスト | |
| ユーザー |
anagohirame
|
| 提出日時 | 2021-02-14 21:31:18 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
AC
|
| 実行時間 | 59 ms / 2,000 ms |
| + 608µs | |
| コード長 | 127 bytes |
| 記録 | |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 95,984 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-23 04:33:10 |
| 合計ジャッジ時間 | 2,325 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 |
ソースコード
n, x = map(int, input().split())
c = list(map(int, input().split()))
if min(c) <= x <= max(c):
print("Yes")
else:
print("No")
anagohirame