結果

問題 No.1021 Children in Classrooms
ユーザー rulerruler
提出日時 2020-04-11 00:18:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 783 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,560 KB
最終ジャッジ日時 2024-09-16 04:19:13
合計ジャッジ時間 4,623 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 279 ms
29,132 KB
testcase_10 AC 272 ms
29,236 KB
testcase_11 AC 274 ms
29,388 KB
testcase_12 AC 286 ms
29,104 KB
testcase_13 AC 286 ms
29,516 KB
testcase_14 AC 287 ms
29,260 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 317 ms
29,560 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

n, m = map(int, sys.stdin.readline().split())
a = deque(map(int, sys.stdin.readline().split()))
s = sys.stdin.readline().rstrip()

def main():
    l = r = 0
    for c in s:
        if c == 'L':  
            if l == 0:
                if len(a) == 1:
                    continue
                b = a.popleft()
                a[0] += b
            r += 1
            l = max(0, l - 1)
        else:
            if r == 0:
                if len(a) == 0:
                    continue
                b = a.pop()
                a[-1] += b
            r = max(0, r - 1)
            l += 1
        if len(a) == 1:
            break
        
    res = [0] * l + list(a) + [0] * r
    print(*res, sep=' ')

if __name__ == '__main__':
    main()
0