結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
32,540 KB
testcase_01 AC 214 ms
28,180 KB
testcase_02 AC 154 ms
21,556 KB
testcase_03 AC 214 ms
28,956 KB
testcase_04 AC 364 ms
34,912 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 102 ms
16,384 KB
testcase_10 AC 102 ms
16,128 KB
testcase_11 AC 102 ms
16,256 KB
testcase_12 AC 198 ms
28,160 KB
testcase_13 AC 273 ms
32,540 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