結果

問題 No.1021 Children in Classrooms
ユーザー lloyzlloyz
提出日時 2022-04-20 07:56:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-06-11 08:14:55
合計ジャッジ時間 4,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 28 ms
11,008 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 30 ms
11,136 KB
testcase_08 AC 27 ms
11,136 KB
testcase_09 AC 244 ms
29,568 KB
testcase_10 AC 245 ms
29,540 KB
testcase_11 AC 239 ms
29,568 KB
testcase_12 AC 241 ms
29,696 KB
testcase_13 AC 245 ms
29,572 KB
testcase_14 AC 241 ms
29,576 KB
testcase_15 AC 203 ms
24,840 KB
testcase_16 AC 206 ms
24,924 KB
testcase_17 AC 210 ms
25,636 KB
testcase_18 AC 251 ms
29,560 KB
testcase_19 AC 109 ms
12,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = map(int, input().split())
A = deque(map(int, input().split()))
S = list(input())
for i in range(m):
    if S[i] == 'L':
        a = A.popleft()
        A[0] += a
        A.append(0)
    elif S[i] == 'R':
        a = A.pop()
        A[-1] += a
        A.appendleft(0)
print(*A)
0