結果

問題 No.1369 交換門松列・竹
ユーザー maimai
提出日時 2019-09-28 11:17:59
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-07-22 09:16:14
合計ジャッジ時間 6,410 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 72 ms
12,416 KB
testcase_08 WA -
testcase_09 AC 77 ms
12,160 KB
testcase_10 AC 77 ms
12,416 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def 🎍(a,b,c)
    a != c && ((a < b && b > c) || (a > b && b < c))
end

n = gets.to_i
arr = gets.split.map(&:to_i)

ok = false
(0...n).to_a.combination(2) do |i, j|
    arr[i], arr[j] = arr[j], arr[i]
    ok ||= arr.each_cons(3).all?{|a| 🎍(*a)}
    arr[i], arr[j] = arr[j], arr[i]
end

puts ok ? 'Yes' : 'No'
0