結果

問題 No.1779 Magical Swap
ユーザー simansiman
提出日時 2021-12-08 06:37:47
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 279 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 28,928 KB
最終ジャッジ日時 2024-07-08 11:26:13
合計ジャッジ時間 4,096 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,032 KB
testcase_01 AC 82 ms
12,288 KB
testcase_02 AC 99 ms
12,288 KB
testcase_03 WA -
testcase_04 AC 138 ms
23,552 KB
testcase_05 AC 108 ms
15,872 KB
testcase_06 AC 110 ms
15,872 KB
testcase_07 AC 134 ms
22,144 KB
testcase_08 AC 84 ms
12,160 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 337 ms
12,416 KB
testcase_16 AC 147 ms
25,600 KB
testcase_17 WA -
testcase_18 AC 75 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

T = gets.to_i

T.times do
  n = gets.to_i
  a = gets.split.map(&:to_i)
  b = gets.split.map(&:to_i)

  if a[0] != b[0] || a.sort != b.sort
    puts 'No'
  else
    if 2.step(n, 2).all? { |i| i < n / 2 || a[i] == b[i] }
      puts 'Yes'
    else
      puts 'No'
    end
  end
end
0