結果

問題 No.1021 Children in Classrooms
ユーザー w0mbatw0mbat
提出日時 2020-04-24 21:17:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 112,256 KB
最終ジャッジ日時 2024-10-15 02:10:53
合計ジャッジ時間 3,675 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 43 ms
53,376 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 61 ms
65,792 KB
testcase_04 AC 62 ms
66,048 KB
testcase_05 AC 64 ms
66,176 KB
testcase_06 AC 66 ms
66,432 KB
testcase_07 AC 64 ms
66,560 KB
testcase_08 AC 68 ms
66,944 KB
testcase_09 AC 170 ms
112,000 KB
testcase_10 AC 172 ms
112,128 KB
testcase_11 AC 173 ms
112,000 KB
testcase_12 AC 171 ms
112,256 KB
testcase_13 AC 174 ms
112,256 KB
testcase_14 AC 173 ms
112,256 KB
testcase_15 AC 137 ms
103,680 KB
testcase_16 AC 134 ms
103,424 KB
testcase_17 AC 137 ms
102,912 KB
testcase_18 AC 146 ms
109,568 KB
testcase_19 AC 68 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M=map(int, input().split())
*A,=map(int, input().split())
S=input()
q=deque(A)
for s in S:
    if s=='L':
        l1=q.popleft()
        l2=q.popleft()
        q.appendleft(l1+l2)
        q.append(0)
    else:
        r1=q.pop()
        r2=q.pop()
        q.append(r1+r2)
        q.appendleft(0)
print(*q)
0