結果
問題 | No.24 数当てゲーム |
ユーザー | takaboujp |
提出日時 | 2016-12-20 13:32:54 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 87 ms / 5,000 ms |
コード長 | 394 bytes |
コンパイル時間 | 69 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-05-08 08:39:22 |
合計ジャッジ時間 | 1,829 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
12,160 KB |
testcase_01 | AC | 87 ms
12,288 KB |
testcase_02 | AC | 81 ms
12,160 KB |
testcase_03 | AC | 85 ms
12,416 KB |
testcase_04 | AC | 81 ms
12,160 KB |
testcase_05 | AC | 80 ms
12,416 KB |
testcase_06 | AC | 81 ms
12,160 KB |
testcase_07 | AC | 85 ms
12,160 KB |
testcase_08 | AC | 82 ms
12,160 KB |
testcase_09 | AC | 81 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
NUMBER_OF_QUESTIONS = gets.to_i number_array = [] (0..9).each do |i| number_array[i] = 0 end NUMBER_OF_QUESTIONS.times do get_string = gets numbers = get_string[0, 7].split.map(&:to_i).to_a inside_answer = get_string.split.last == 'YES' ? 1 : -1 numbers.each do |number| number_array[number] += inside_answer end end puts number_array.index(number_array.max_by { |num| num })