結果

問題 No.24 数当てゲーム
ユーザー hashimotohashimoto
提出日時 2015-05-22 15:28:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 461 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-07-06 04:43:10
合計ジャッジ時間 1,380 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,032 KB
testcase_01 AC 75 ms
12,032 KB
testcase_02 AC 74 ms
12,160 KB
testcase_03 AC 79 ms
11,904 KB
testcase_04 AC 75 ms
12,160 KB
testcase_05 AC 76 ms
12,160 KB
testcase_06 AC 74 ms
12,160 KB
testcase_07 AC 76 ms
12,032 KB
testcase_08 AC 74 ms
12,032 KB
testcase_09 AC 73 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i

answer = (0..9).to_a

taro_reply = []
n.times do |i|
    taro_reply[i] = gets.split
    taro_reply[i][0..3] = taro_reply[i][0..3].map(&:to_i)

    if taro_reply[i][4] == "NO"
        0.upto(3) do |j|
            answer[taro_reply[i][j]] = "x"
        end
    else
        0.upto(9) do |k|
            if !taro_reply[i].include?(k)
                answer[k] = "x"
            end
        end
    end
end

answer.each do |i|
    p i if i != "x"
end
0