結果

問題 No.1395 Less Sweet Alchemy
ユーザー O2MTO2MT
提出日時 2021-02-14 22:23:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 87,088 KB
実行使用メモリ 71,412 KB
最終ジャッジ日時 2023-09-29 16:00:26
合計ジャッジ時間 1,858 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
71,060 KB
testcase_01 AC 63 ms
71,348 KB
testcase_02 AC 63 ms
71,412 KB
testcase_03 AC 59 ms
71,180 KB
testcase_04 AC 59 ms
71,392 KB
testcase_05 AC 66 ms
71,168 KB
testcase_06 AC 62 ms
71,264 KB
testcase_07 AC 71 ms
71,144 KB
testcase_08 AC 60 ms
71,272 KB
testcase_09 AC 60 ms
71,100 KB
testcase_10 AC 60 ms
71,272 KB
testcase_11 AC 61 ms
71,272 KB
testcase_12 AC 58 ms
71,352 KB
testcase_13 AC 61 ms
71,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X = map(int,input().split())
C = list(map(int,input().split()))
if C[0] <= X <= C[-1]:
    print("Yes")
else:
    print("No")
0