結果

問題 No.1021 Children in Classrooms
ユーザー DakatanDakatan
提出日時 2020-04-11 01:47:06
言語 Ruby
(3.3.0)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-09-16 07:19:46
合計ジャッジ時間 6,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,032 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 85 ms
12,032 KB
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 94 ms
12,544 KB
testcase_05 AC 94 ms
12,416 KB
testcase_06 AC 92 ms
12,288 KB
testcase_07 AC 92 ms
12,288 KB
testcase_08 AC 91 ms
12,416 KB
testcase_09 AC 360 ms
35,328 KB
testcase_10 AC 364 ms
35,328 KB
testcase_11 AC 365 ms
35,200 KB
testcase_12 AC 360 ms
35,200 KB
testcase_13 AC 362 ms
35,200 KB
testcase_14 AC 362 ms
35,200 KB
testcase_15 AC 328 ms
33,280 KB
testcase_16 AC 323 ms
33,280 KB
testcase_17 AC 333 ms
33,792 KB
testcase_18 AC 356 ms
34,724 KB
testcase_19 AC 201 ms
26,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

_n, _m = gets.chomp.split(' ').map(&:to_i)
arr = gets.chomp.split(' ').map(&:to_i)
ss = gets.chomp.split('')
ss.each do |s|
  if s == 'L'
    a1 = arr.shift
    a2 = arr.shift
    arr.unshift(a1 + a2)
    arr.push(0)
  else
    a1 = arr.pop
    a2 = arr.pop
    arr.push(a1 + a2)
    arr.unshift(0)
  end
end
puts arr.join(' ')
0