結果

問題 No.1021 Children in Classrooms
ユーザー rlangevinrlangevin
提出日時 2023-01-21 16:14:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 116,932 KB
最終ジャッジ日時 2024-06-23 23:49:02
合計ジャッジ時間 4,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,000 KB
testcase_01 AC 43 ms
56,020 KB
testcase_02 AC 44 ms
55,532 KB
testcase_03 AC 57 ms
68,756 KB
testcase_04 AC 58 ms
68,904 KB
testcase_05 AC 58 ms
69,316 KB
testcase_06 AC 58 ms
70,120 KB
testcase_07 AC 64 ms
69,464 KB
testcase_08 AC 60 ms
71,232 KB
testcase_09 AC 147 ms
116,292 KB
testcase_10 AC 146 ms
116,688 KB
testcase_11 AC 148 ms
116,932 KB
testcase_12 AC 160 ms
116,596 KB
testcase_13 AC 195 ms
116,516 KB
testcase_14 AC 160 ms
116,884 KB
testcase_15 AC 130 ms
111,376 KB
testcase_16 AC 128 ms
111,460 KB
testcase_17 AC 128 ms
111,448 KB
testcase_18 AC 139 ms
116,392 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split())) + [0]*202020
S = list(input())

maxv = 0
minv = 0
now, val = 0, 0
for s in S:
    if s == "L":
        val -= 1
        now -= 1
    else:
        val += 1
        now += 1
    maxv = max(maxv, val)
    minv = min(minv, val)
    now = max(0, now)
    
minv = abs(minv)
for i in range(minv - 1, -1, -1):
    A[minv] += A[i]
    A[i] = 0
for i in range(N - 1, N - 1 - maxv, -1):
    A[N - 1 - maxv] += A[i]
    A[i] = 0
    
ans = []
for i in range(N):
    ans.append(A[minv - now + i])
print(*ans)
0