結果

問題 No.1021 Children in Classrooms
ユーザー timitimi
提出日時 2020-10-12 16:54:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,384 KB
最終ジャッジ日時 2024-07-20 18:05:18
合計ジャッジ時間 4,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 34 ms
10,752 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 272 ms
30,112 KB
testcase_10 AC 269 ms
29,960 KB
testcase_11 AC 269 ms
30,112 KB
testcase_12 AC 265 ms
30,240 KB
testcase_13 AC 267 ms
30,108 KB
testcase_14 AC 274 ms
30,240 KB
testcase_15 AC 224 ms
25,968 KB
testcase_16 AC 229 ms
25,328 KB
testcase_17 AC 232 ms
26,984 KB
testcase_18 AC 267 ms
30,384 KB
testcase_19 AC 112 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
A=list(map(int, input().split()))
s=input()
from collections import deque
d=deque(A)
for i in s:
    if i=='L':
        a=d.popleft()
        b=d.popleft()
        d.appendleft(a+b)
        d.append(0)
    else:
        a=d.pop()
        b=d.pop()
        d.appendleft(0)
        d.append(a+b)
print(*d)
0