結果
| 問題 | No.1395 Less Sweet Alchemy |
| コンテスト | |
| ユーザー |
sash2104
|
| 提出日時 | 2021-02-14 21:30:20 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 94 ms / 2,000 ms |
| + 980µs | |
| コード長 | 379 bytes |
| 記録 | |
| コンパイル時間 | 299 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-08-23 04:32:47 |
| 合計ジャッジ時間 | 2,894 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 |
ソースコード
def ri(): return int(input())
def rl(): return list(input().split())
def rli(): return list(map(int, input().split()))
def main():
n, x = rli()
lc = rli()
mi = min(lc)
ma = max(lc)
if mi == x or ma == x:
print("Yes")
return
if mi <= x and ma >= x:
print("Yes")
return
print("No")
if __name__ == '__main__':
main()
sash2104