結果

問題 No.1021 Children in Classrooms
ユーザー maspymaspy
提出日時 2020-04-10 21:26:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,328 KB
最終ジャッジ日時 2024-09-15 19:02:26
合計ジャッジ時間 4,625 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 35 ms
10,624 KB
testcase_07 AC 33 ms
10,880 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 259 ms
29,316 KB
testcase_10 AC 260 ms
29,132 KB
testcase_11 AC 260 ms
29,188 KB
testcase_12 AC 264 ms
29,188 KB
testcase_13 AC 262 ms
29,316 KB
testcase_14 AC 268 ms
29,192 KB
testcase_15 AC 236 ms
24,820 KB
testcase_16 AC 253 ms
24,640 KB
testcase_17 AC 248 ms
25,436 KB
testcase_18 AC 305 ms
29,328 KB
testcase_19 AC 77 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import deque

N, M = map(int, readline().split())
A = deque(map(int, readline().split()))
S = read().rstrip().decode()

L = 0  # A[0] の部屋
R = N - 1  # A[-1] の部屋
for s in S:
    if s == 'L':
        if L:
            L -= 1
            R -= 1
        else:
            if len(A) > 1:
                x = A.popleft()
                A[0] += x
                R -= 1
        continue
    if R < N - 1:
        L += 1
        R += 1
        continue
    if len(A) == 1:
        continue
    x = A.pop()
    A[-1] += x
    L += 1

nums = [0] * N
nums[L: R + 1] = A
print(*nums)
0