結果

問題 No.1021 Children in Classrooms
ユーザー flippergoflippergo
提出日時 2021-01-02 09:56:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 107,596 KB
最終ジャッジ日時 2024-10-11 23:10:42
合計ジャッジ時間 4,372 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,184 KB
testcase_01 AC 40 ms
54,284 KB
testcase_02 AC 40 ms
53,656 KB
testcase_03 AC 67 ms
68,412 KB
testcase_04 AC 57 ms
67,760 KB
testcase_05 AC 56 ms
67,156 KB
testcase_06 AC 56 ms
67,584 KB
testcase_07 AC 57 ms
67,704 KB
testcase_08 AC 56 ms
67,324 KB
testcase_09 AC 138 ms
107,256 KB
testcase_10 AC 142 ms
107,388 KB
testcase_11 AC 139 ms
107,508 KB
testcase_12 AC 146 ms
107,596 KB
testcase_13 AC 144 ms
107,208 KB
testcase_14 AC 142 ms
107,392 KB
testcase_15 AC 125 ms
102,480 KB
testcase_16 AC 124 ms
102,028 KB
testcase_17 AC 129 ms
102,468 KB
testcase_18 AC 136 ms
107,460 KB
testcase_19 AC 69 ms
76,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
A = deque(list(map(int,input().split())))
S = input().strip()
cntL = 0
cntR = 0
for i in range(M):
    if S[i]=="L":
        A[-1] += cntR
        cntR = 0
        cntL += A.popleft()
        A.append(0)
    else:
        A[0] += cntL
        cntL = 0
        cntR += A.pop()
        A.appendleft(0)
A[0] += cntL
A[-1] += cntR
print(*A)
0