結果

問題 No.1021 Children in Classrooms
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-27 22:58:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-11-06 15:41:53
合計ジャッジ時間 4,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 65 ms
67,584 KB
testcase_04 AC 62 ms
67,456 KB
testcase_05 AC 62 ms
67,072 KB
testcase_06 AC 62 ms
67,328 KB
testcase_07 AC 62 ms
67,712 KB
testcase_08 AC 65 ms
67,584 KB
testcase_09 AC 158 ms
107,776 KB
testcase_10 AC 166 ms
107,776 KB
testcase_11 AC 154 ms
107,648 KB
testcase_12 AC 152 ms
107,568 KB
testcase_13 AC 153 ms
107,648 KB
testcase_14 AC 147 ms
107,904 KB
testcase_15 AC 137 ms
102,784 KB
testcase_16 AC 136 ms
102,656 KB
testcase_17 AC 140 ms
102,528 KB
testcase_18 AC 138 ms
107,524 KB
testcase_19 AC 77 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = input()
for s in S:
    if s == "L":
        x = A.popleft()
        A[0] += x
        A.append(0)
    
    if s == "R":
        x = A.pop()
        A[-1] += x
        A.appendleft(0)

print(*list(A))
0