結果

問題 No.24 数当てゲーム
ユーザー apierceapierce
提出日時 2022-11-03 14:36:11
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 281 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-18 00:09:07
合計ジャッジ時間 1,704 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n = gets.to_i
result = Array.new(10, true)

n.times do |i|
    arr = gets.split
    a, b, c, d, s = arr
    if s == "NO"
        result[a.to_i] = false
        result[b.to_i] = false
        result[c.to_i] = false
        result[d.to_i] = false
    end
end
puts result.index{|x| x}
0