結果

問題 No.1021 Children in Classrooms
ユーザー rlangevinrlangevin
提出日時 2023-01-21 16:24:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 621 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 116,932 KB
最終ジャッジ日時 2024-06-23 23:55:06
合計ジャッジ時間 3,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,472 KB
testcase_01 AC 41 ms
55,392 KB
testcase_02 AC 40 ms
56,036 KB
testcase_03 AC 62 ms
69,856 KB
testcase_04 AC 58 ms
69,468 KB
testcase_05 AC 58 ms
70,212 KB
testcase_06 AC 59 ms
69,444 KB
testcase_07 AC 62 ms
70,856 KB
testcase_08 WA -
testcase_09 AC 152 ms
116,508 KB
testcase_10 AC 151 ms
116,740 KB
testcase_11 AC 149 ms
116,492 KB
testcase_12 AC 163 ms
116,696 KB
testcase_13 AC 169 ms
116,696 KB
testcase_14 AC 165 ms
116,932 KB
testcase_15 AC 133 ms
111,624 KB
testcase_16 WA -
testcase_17 AC 136 ms
110,868 KB
testcase_18 WA -
testcase_19 AC 84 ms
88,484 KB
権限があれば一括ダウンロードができます

ソースコード

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 = min(N, max(maxv, val))
    minv = max(-(N), min(minv, val))
    now = min(N - 1, max(0, now))
    
minv = abs(minv)
# print(minv, maxv, val, now)
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