結果

問題 No.1021 Children in Classrooms
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-27 16:03:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,644 KB
最終ジャッジ日時 2024-06-25 11:48:47
合計ジャッジ時間 5,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 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
10,880 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 34 ms
11,136 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 267 ms
30,248 KB
testcase_10 AC 269 ms
30,220 KB
testcase_11 AC 272 ms
30,244 KB
testcase_12 AC 266 ms
30,368 KB
testcase_13 AC 267 ms
30,244 KB
testcase_14 AC 263 ms
30,500 KB
testcase_15 AC 226 ms
26,196 KB
testcase_16 AC 226 ms
25,584 KB
testcase_17 AC 232 ms
26,996 KB
testcase_18 AC 273 ms
30,644 KB
testcase_19 AC 104 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n, m = map(int, input().split())

a = deque(list(map(int, input().split())))
s = input()
for i in s:
    if i == "L":
        p1, p2 = a.popleft(), a.popleft()
        a.appendleft(p1 + p2)
        a.append(0)
    else:
        p1, p2 = a.pop(), a.pop()
        a.append(p1 + p2)
        a.appendleft(0)
print(*a)
0