結果

問題 No.1021 Children in Classrooms
ユーザー 👑 KazunKazun
提出日時 2020-06-10 17:48:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-06-23 10:08:18
合計ジャッジ時間 3,757 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,120 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 95 ms
66,816 KB
testcase_04 AC 65 ms
66,944 KB
testcase_05 AC 65 ms
66,688 KB
testcase_06 AC 65 ms
66,944 KB
testcase_07 AC 65 ms
67,200 KB
testcase_08 AC 63 ms
67,200 KB
testcase_09 AC 150 ms
107,136 KB
testcase_10 AC 154 ms
106,752 KB
testcase_11 AC 145 ms
106,880 KB
testcase_12 AC 146 ms
107,008 KB
testcase_13 AC 152 ms
107,136 KB
testcase_14 AC 145 ms
106,880 KB
testcase_15 AC 134 ms
102,144 KB
testcase_16 AC 133 ms
102,272 KB
testcase_17 AC 134 ms
102,272 KB
testcase_18 AC 134 ms
106,752 KB
testcase_19 AC 68 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,M=map(int,input().split())
A=list(map(int,input().split()))
S=input()

Q=deque(A)
for d in S:
    if d=="L":
        a=Q.popleft()
        b=Q.popleft()
        Q.appendleft(a+b)
        Q.append(0)
    else:
        a=Q.pop()
        b=Q.pop()
        Q.append(a+b)
        Q.appendleft(0)

for i in range(N):
    a=Q.popleft()
    print(a,end=" ")
print()
0