結果

問題 No.24 数当てゲーム
ユーザー iwamotiwamot
提出日時 2016-01-14 22:44:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 11,884 KB
実行使用メモリ 16,104 KB
最終ジャッジ日時 2023-10-19 23:07:45
合計ジャッジ時間 1,864 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
16,100 KB
testcase_01 AC 87 ms
16,104 KB
testcase_02 AC 89 ms
16,104 KB
testcase_03 AC 85 ms
16,104 KB
testcase_04 AC 85 ms
16,104 KB
testcase_05 AC 86 ms
16,100 KB
testcase_06 AC 85 ms
16,104 KB
testcase_07 AC 86 ms
16,104 KB
testcase_08 AC 86 ms
16,104 KB
testcase_09 AC 85 ms
16,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i

a = (0..9).to_a

n.times do
  n1, n2, n3, n4, f = gets.split(' ')
  if f == 'NO'
    a.delete_if do |i|
      i == n1.to_i || i == n2.to_i || i == n3.to_i || i == n4.to_i
    end
  else
    a.delete_if do |i|
      i != n1.to_i && i != n2.to_i && i != n3.to_i && i != n4.to_i
    end
  end
end

puts a.first
0