結果

問題 No.1366 交換門松列・梅
ユーザー universatouniversato
提出日時 2021-01-29 21:45:21
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-27 07:59:10
合計ジャッジ時間 1,677 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 84 ms
12,288 KB
testcase_04 WA -
testcase_05 AC 79 ms
12,288 KB
testcase_06 AC 77 ms
12,288 KB
testcase_07 AC 83 ms
12,160 KB
testcase_08 AC 77 ms
12,160 KB
testcase_09 AC 78 ms
12,416 KB
testcase_10 AC 78 ms
12,288 KB
testcase_11 WA -
testcase_12 AC 76 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Array
  def kadomatsu?
    return nil unless size == 3
    return false unless uniq.size == 3
    
    self[1] == min || self[1] == max
  end
end

a = gets.to_s.split.map{ |e| e.to_i }
b = gets.to_s.split.map{ |e| e.to_i }

[0, 1, 2].zip([0, 1, 2]) do |i, j|
  c = a.dup
  d = b.dup
  c[i], d[j] = d[j], c[i]
  if c.kadomatsu? && d.kadomatsu?
    puts "Yes"
    exit
  end
end

puts "No"
0