結果

問題 No.1021 Children in Classrooms
ユーザー gemmarogemmaro
提出日時 2020-04-26 07:39:50
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 450 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 817,792 KB
最終ジャッジ日時 2024-11-15 19:49:19
合計ジャッジ時間 27,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 136 ms
48,384 KB
testcase_04 AC 133 ms
54,656 KB
testcase_05 AC 130 ms
48,384 KB
testcase_06 AC 125 ms
47,360 KB
testcase_07 AC 170 ms
78,720 KB
testcase_08 AC 165 ms
75,008 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

# rubocop:todo Metrics/AbcSize
def solve_rec(a, s) # rubocop:todo Naming/MethodParameterName
  if s.empty?
    a.join(' ')
  elsif s[0] == 'L'
    solve_rec([a[0] + a[1]] + a[2..-1] + [0], s[1..-1])
  else # s[0] == 'R'
    solve_rec([0] + a[0..-3] + [a[-2] + a[-1]], s[1..-1])
  end
end
# rubocop:enable Metrics/AbcSize

gets
A = gets.chomp.split.map(&:to_i)
S = gets.chomp.chars

RESULT = solve_rec(A, S)

puts RESULT
0