結果

問題 No.1021 Children in Classrooms
ユーザー tktk_snsntktk_snsn
提出日時 2021-08-08 19:51:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,704 KB
最終ジャッジ日時 2024-09-19 16:31:10
合計ジャッジ時間 5,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
11,008 KB
testcase_09 AC 226 ms
30,216 KB
testcase_10 AC 224 ms
30,196 KB
testcase_11 AC 229 ms
30,224 KB
testcase_12 AC 223 ms
30,224 KB
testcase_13 AC 235 ms
30,092 KB
testcase_14 AC 225 ms
30,224 KB
testcase_15 AC 188 ms
25,484 KB
testcase_16 AC 192 ms
25,436 KB
testcase_17 AC 195 ms
26,020 KB
testcase_18 AC 230 ms
30,704 KB
testcase_19 AC 85 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n, m = map(int, input().split())
a = list(map(int, input().split()))
s = input()

b = deque(a)
for i in s:
    if i == "L":
        x = b.popleft()
        b[0] += x
        b.append(0)
    else:
        x = b.pop()
        b[-1] += x
        b.appendleft(0)

print(*b)
0