結果

問題 No.1021 Children in Classrooms
ユーザー AEnAEn
提出日時 2022-05-13 16:24:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-07-21 15:28:38
合計ジャッジ時間 4,147 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,504 KB
testcase_01 AC 39 ms
53,760 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 52 ms
66,944 KB
testcase_04 AC 53 ms
66,816 KB
testcase_05 AC 56 ms
66,816 KB
testcase_06 AC 52 ms
66,944 KB
testcase_07 AC 52 ms
66,816 KB
testcase_08 AC 54 ms
66,944 KB
testcase_09 AC 144 ms
107,392 KB
testcase_10 AC 148 ms
107,384 KB
testcase_11 AC 145 ms
107,392 KB
testcase_12 AC 144 ms
107,264 KB
testcase_13 AC 143 ms
107,264 KB
testcase_14 AC 139 ms
107,008 KB
testcase_15 AC 127 ms
103,808 KB
testcase_16 AC 127 ms
102,272 KB
testcase_17 AC 128 ms
102,456 KB
testcase_18 AC 130 ms
106,880 KB
testcase_19 AC 78 ms
85,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N, M = map(int,input().split())
A = list(map(int, input().split()))
d = deque(A)
S = list(input())
for s in S:
    if s == 'R':
        d.appendleft(0)
        n = d.pop()
        d[-1] += n
    else:
        d.append(0)
        n = d.popleft()
        d[0] += n
print(*d)
0