結果
問題 | No.24 数当てゲーム |
ユーザー | iwamot |
提出日時 | 2016-01-14 22:44:51 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 92 ms / 5,000 ms |
コード長 | 322 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-09-19 19:04:50 |
合計ジャッジ時間 | 1,653 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
12,032 KB |
testcase_01 | AC | 90 ms
12,160 KB |
testcase_02 | AC | 91 ms
12,032 KB |
testcase_03 | AC | 89 ms
12,288 KB |
testcase_04 | AC | 91 ms
12,160 KB |
testcase_05 | AC | 90 ms
12,160 KB |
testcase_06 | AC | 90 ms
12,160 KB |
testcase_07 | AC | 92 ms
12,288 KB |
testcase_08 | AC | 90 ms
12,160 KB |
testcase_09 | AC | 92 ms
12,288 KB |
コンパイルメッセージ
Syntax OK
ソースコード
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