結果

問題 No.1779 Magical Swap
ユーザー simansiman
提出日時 2021-12-08 06:43:24
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 627 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-07-08 11:32:19
合計ジャッジ時間 4,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,160 KB
testcase_01 AC 74 ms
12,032 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 WA -
testcase_04 AC 128 ms
23,424 KB
testcase_05 AC 101 ms
15,872 KB
testcase_06 AC 102 ms
15,824 KB
testcase_07 AC 121 ms
22,144 KB
testcase_08 AC 76 ms
12,032 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 323 ms
12,416 KB
testcase_16 AC 138 ms
25,728 KB
testcase_17 WA -
testcase_18 AC 75 ms
12,032 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 3.step(n, 2).all? { |i| 2 * i <= n || a[i - 1] == b[i - 1] }
      puts 'Yes'
    else
      puts 'No'
    end
  end
end
0