結果

問題 No.233 めぐるはめぐる (3)
ユーザー simansiman
提出日時 2023-01-03 11:53:27
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 35,780 KB
最終ジャッジ日時 2024-05-05 07:07:25
合計ジャッジ時間 7,753 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
32,560 KB
testcase_01 AC 215 ms
27,928 KB
testcase_02 AC 162 ms
21,424 KB
testcase_03 AC 230 ms
28,832 KB
testcase_04 AC 410 ms
34,948 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 112 ms
16,384 KB
testcase_10 AC 113 ms
16,128 KB
testcase_11 AC 114 ms
16,384 KB
testcase_12 AC 218 ms
28,308 KB
testcase_13 AC 300 ms
32,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:25: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

A = %w(i a a e u u)
B = %w(n b m g r)

N = gets.to_i
memo = Hash.new
N.times do
  s = gets.chomp
  memo[s] = true
end

A.permutation(6).to_a.product(B.permutation(5).to_a).each do |a, b|
  s = ''

  6.times do |i|
    s << a[i]
    s << b[i] if i < 5
  end

  if memo[s].nil?
    puts s
    exit
  end
end

puts -1
0