結果

問題 No.1021 Children in Classrooms
ユーザー simansiman
提出日時 2020-09-04 03:19:50
言語 Ruby
(3.3.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 32,000 KB
最終ジャッジ日時 2024-05-03 13:48:53
合計ジャッジ時間 5,339 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,288 KB
testcase_01 AC 73 ms
12,288 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 81 ms
12,416 KB
testcase_04 AC 78 ms
12,416 KB
testcase_05 AC 77 ms
12,416 KB
testcase_06 AC 79 ms
12,288 KB
testcase_07 AC 78 ms
12,672 KB
testcase_08 AC 79 ms
12,416 KB
testcase_09 AC 301 ms
31,616 KB
testcase_10 AC 311 ms
31,488 KB
testcase_11 AC 313 ms
31,360 KB
testcase_12 AC 302 ms
31,488 KB
testcase_13 AC 306 ms
31,488 KB
testcase_14 AC 320 ms
31,488 KB
testcase_15 AC 267 ms
27,008 KB
testcase_16 AC 262 ms
27,008 KB
testcase_17 AC 277 ms
27,776 KB
testcase_18 AC 300 ms
32,000 KB
testcase_19 AC 172 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:5: warning: assigned but unused variable - idx
Main.rb:6: warning: assigned but unused variable - zure
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
S = gets.chomp

idx = 0
zure = 0

S.each_char do |s|
  if s == 'L'
    a1, a2 = A.shift(2)
    A.unshift(a1 + a2)
    A.push(0)
  else
    a1, a2 = A.pop(2)
    A.push(a1 + a2)
    A.unshift(0)
  end
end

puts A.join(' ')
0