結果

問題 No.1021 Children in Classrooms
ユーザー 小野寺健小野寺健
提出日時 2021-11-06 13:35:24
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 252 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 39,552 KB
最終ジャッジ日時 2024-11-07 09:52:22
合計ジャッジ時間 5,686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
17,408 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 85 ms
12,032 KB
testcase_03 AC 95 ms
12,288 KB
testcase_04 AC 91 ms
12,416 KB
testcase_05 AC 95 ms
12,416 KB
testcase_06 AC 95 ms
12,416 KB
testcase_07 AC 96 ms
12,544 KB
testcase_08 AC 96 ms
12,416 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split(" ").map{|s| s.to_i}
a = gets.split(" ").map{|s| s.to_i}
S = gets.strip.split("")

S.each {|c|
	if c == "L" then
		a[1] += a[0]
		a.shift
		a << 0
	else
		a[-2] += a[-1]
		a.pop
		a.unshift(0)
	end
}

print a.map{|i| i.to_s}.join(" ")
0