結果

問題 No.1395 Less Sweet Alchemy
ユーザー i524
提出日時 2021-03-15 06:54:26
言語 TypeScript
(5.7.2)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 8,236 ms
コンパイル使用メモリ 228,128 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-12-31 16:34:24
合計ジャッジ時間 9,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 6 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

const [[N, X], l] = require("fs").readFileSync("/dev/stdin", "utf8").split('\n').map(line => line.split(' '));

if (Math.max(l) > X && Math.min(l) < X) {
    console.log('Yes');
} else {
    console.log('No');
}
0