結果

問題 No.1026 OGAWA's New Keyboard
ユーザー gemmarogemmaro
提出日時 2020-04-21 09:56:00
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 467 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 97,408 KB
最終ジャッジ日時 2024-10-07 15:25:56
合計ジャッジ時間 4,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,288 KB
testcase_01 AC 80 ms
12,032 KB
testcase_02 AC 80 ms
12,032 KB
testcase_03 AC 81 ms
12,160 KB
testcase_04 RE -
testcase_05 AC 100 ms
24,576 KB
testcase_06 AC 125 ms
42,496 KB
testcase_07 RE -
testcase_08 AC 93 ms
19,328 KB
testcase_09 AC 80 ms
12,032 KB
testcase_10 AC 82 ms
12,672 KB
testcase_11 AC 84 ms
12,416 KB
testcase_12 AC 97 ms
12,032 KB
testcase_13 AC 81 ms
12,032 KB
testcase_14 AC 78 ms
12,032 KB
testcase_15 AC 77 ms
12,160 KB
testcase_16 AC 81 ms
12,416 KB
testcase_17 RE -
testcase_18 AC 80 ms
12,416 KB
testcase_19 RE -
testcase_20 AC 76 ms
12,160 KB
testcase_21 AC 77 ms
12,032 KB
testcase_22 AC 82 ms
12,288 KB
testcase_23 AC 83 ms
12,416 KB
testcase_24 RE -
testcase_25 AC 89 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

def solve(t_and_s, result)
  if t_and_s.empty?
    result
  else
    solve(t_and_s[1..-1], (case t_and_s.first[0]
                           when '0'
                             "#{result}#{t_and_s.first[1]}"
                           when '1'
                             "#{t_and_s.first[1]}#{result}"
                           end))
  end
end

N = gets.to_i
T = N.times.map { gets.chomp.split }

RESULT = solve(T, '')

puts RESULT
0