結果

問題 No.1021 Children in Classrooms
ユーザー MineMine
提出日時 2020-09-02 22:39:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,628 KB
最終ジャッジ日時 2024-05-01 18:03:13
合計ジャッジ時間 6,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 34 ms
11,008 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 34 ms
11,136 KB
testcase_08 AC 33 ms
11,008 KB
testcase_09 AC 349 ms
29,496 KB
testcase_10 AC 344 ms
29,600 KB
testcase_11 AC 340 ms
29,496 KB
testcase_12 AC 365 ms
29,500 KB
testcase_13 AC 359 ms
29,624 KB
testcase_14 AC 358 ms
29,628 KB
testcase_15 AC 337 ms
24,756 KB
testcase_16 AC 355 ms
24,972 KB
testcase_17 AC 344 ms
25,684 KB
testcase_18 AC 419 ms
29,596 KB
testcase_19 AC 163 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

l = 0
r = n-1

for i in range(m):
    if s[i] == "L":
        if l - 1 < 0:
            if len(a) > 1:
                a0 = a.popleft()
                a1 = a.popleft()
                a.appendleft(a0+a1)
        else:
            l -= 1
        r = max(r-1, 0)
    else:
        if r+1 > n-1:
            if len(a) > 1:
                a_1 = a.pop()
                a_2 = a.pop()
                a.append(a_1+a_2)
        else:
            r += 1
        l = min(l+1, n-1)
print(*[0]*l + list(a) + [0]*(n-1-r))
0