結果

問題 No.1021 Children in Classrooms
ユーザー simansiman
提出日時 2020-09-04 03:19:50
言語 Ruby
(3.3.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 31,872 KB
最終ジャッジ日時 2024-11-24 14:13:20
合計ジャッジ時間 6,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,160 KB
testcase_01 AC 84 ms
12,288 KB
testcase_02 AC 86 ms
12,032 KB
testcase_03 AC 90 ms
12,160 KB
testcase_04 AC 89 ms
12,288 KB
testcase_05 AC 91 ms
12,416 KB
testcase_06 AC 91 ms
12,288 KB
testcase_07 AC 89 ms
12,544 KB
testcase_08 AC 90 ms
12,416 KB
testcase_09 AC 342 ms
31,360 KB
testcase_10 AC 346 ms
31,360 KB
testcase_11 AC 350 ms
31,360 KB
testcase_12 AC 342 ms
31,488 KB
testcase_13 AC 344 ms
31,488 KB
testcase_14 AC 342 ms
31,488 KB
testcase_15 AC 298 ms
27,008 KB
testcase_16 AC 298 ms
27,008 KB
testcase_17 AC 305 ms
27,776 KB
testcase_18 AC 339 ms
31,872 KB
testcase_19 AC 186 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