結果

問題 No.1395 Less Sweet Alchemy
ユーザー RedSpicaRedSpica
提出日時 2021-02-14 21:25:38
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 10,672 KB
実行使用メモリ 7,860 KB
最終ジャッジ日時 2023-09-29 14:28:17
合計ジャッジ時間 905 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
7,800 KB
testcase_01 AC 13 ms
7,772 KB
testcase_02 AC 12 ms
7,720 KB
testcase_03 AC 13 ms
7,836 KB
testcase_04 AC 13 ms
7,836 KB
testcase_05 AC 13 ms
7,716 KB
testcase_06 AC 14 ms
7,812 KB
testcase_07 AC 11 ms
7,812 KB
testcase_08 AC 12 ms
7,796 KB
testcase_09 AC 11 ms
7,744 KB
testcase_10 AC 12 ms
7,804 KB
testcase_11 AC 12 ms
7,860 KB
testcase_12 AC 12 ms
7,724 KB
testcase_13 AC 12 ms
7,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x=map(int,input().split())
A=list(map(int,input().split()))
print('Yes' if min(A)<=x and max(A)>=x else 'No')
0