結果
問題 | No.1366 交換門松列・梅 |
ユーザー | test |
提出日時 | 2022-11-20 15:06:36 |
言語 | JavaScript (node v23.5.0) |
結果 |
AC
|
実行時間 | 65 ms / 1,000 ms |
コード長 | 717 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 6,692 KB |
実行使用メモリ | 39,424 KB |
最終ジャッジ日時 | 2024-12-16 13:21:17 |
合計ジャッジ時間 | 1,708 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 12 |
ソースコード
function isK(a) { if (a[0] == a[1] || a[0] == a[2] || a[1] == a[2]) return false; if ((a[0] > a[1] && a[2] > a[1]) || (a[0] < a[1] && a[2] < a[1])) { return true; } else { return false; } } function sub(a, b) { for (let i = 0; i <= 2; i++) { for (let j = 0; j <= 2; j++) { let c = [...a]; let d = [...b]; c[i] = b[j]; d[j] = a[i]; if (isK(c) && isK(d)) return "Yes"; } } return "No"; } function Main(input) { const src = input.split("\n"); const a = src[0].split(" "); const b = src[1].split(" "); console.log(sub(a, b)); } Main(require("fs").readFileSync("/dev/stdin", "utf8"));