結果

問題 No.1021 Children in Classrooms
ユーザー もりをもりを
提出日時 2020-04-10 21:40:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 715 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 113,920 KB
最終ジャッジ日時 2024-09-15 19:43:43
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 57 ms
63,616 KB
testcase_04 AC 57 ms
63,744 KB
testcase_05 AC 58 ms
63,872 KB
testcase_06 AC 58 ms
63,872 KB
testcase_07 AC 59 ms
63,616 KB
testcase_08 AC 61 ms
64,128 KB
testcase_09 AC 133 ms
105,216 KB
testcase_10 AC 134 ms
105,216 KB
testcase_11 AC 134 ms
105,344 KB
testcase_12 AC 141 ms
105,472 KB
testcase_13 AC 140 ms
105,344 KB
testcase_14 AC 140 ms
105,600 KB
testcase_15 AC 121 ms
98,560 KB
testcase_16 AC 116 ms
98,304 KB
testcase_17 AC 119 ms
98,432 KB
testcase_18 AC 130 ms
113,920 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = list(map(int,input().split()))
s = input()

# [l, r]
l,r = 0,n-1
l_margin = 0
r_margin = 0

for com in s:
    if com == 'L':
        if l_margin:
            l_margin -= 1
            r_margin += 1
            continue
        if l + 1 >= n:
            continue
        a[l + 1] += a[l]
        a[l] = 0
        l += 1
        r_margin += 1
    else:
        if r_margin:
            r_margin -= 1
            l_margin += 1
            continue
        if r - 1 < 0:
            continue
        a[r - 1] += a[r]
        a[r] = 0
        r -= 1
        l_margin += 1
    # print(a, l, r, l_margin, r_margin)

res = [0] * l_margin
res += a[l:r+1]
res += [0] * r_margin
print(*res)
0