結果

問題 No.1021 Children in Classrooms
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-10 21:43:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-09-15 19:47:00
合計ジャッジ時間 3,578 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 45 ms
53,120 KB
testcase_02 AC 45 ms
53,120 KB
testcase_03 AC 78 ms
66,048 KB
testcase_04 AC 68 ms
66,176 KB
testcase_05 AC 66 ms
66,176 KB
testcase_06 AC 66 ms
66,304 KB
testcase_07 AC 67 ms
66,432 KB
testcase_08 AC 67 ms
66,560 KB
testcase_09 AC 157 ms
107,008 KB
testcase_10 AC 168 ms
106,880 KB
testcase_11 AC 158 ms
106,624 KB
testcase_12 AC 157 ms
106,624 KB
testcase_13 AC 158 ms
106,624 KB
testcase_14 AC 154 ms
107,136 KB
testcase_15 AC 140 ms
102,272 KB
testcase_16 AC 137 ms
102,144 KB
testcase_17 AC 142 ms
101,888 KB
testcase_18 AC 142 ms
106,496 KB
testcase_19 AC 62 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import deque
B = deque(A)
for i in range(m):
    if s[i] == 'L':
        x = B.popleft()
        y = B.popleft()
        y += x
        B.appendleft(y)
        B.append(0)
    else:
        x = B.pop()
        y = B.pop()
        y += x
        B.append(y)
        B.appendleft(0)
B = list(B)
print(*B)
0