結果

問題 No.1021 Children in Classrooms
ユーザー ntudantuda
提出日時 2024-01-28 21:37:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-09-28 09:57:01
合計ジャッジ時間 4,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 45 ms
53,248 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 65 ms
66,304 KB
testcase_04 AC 68 ms
66,432 KB
testcase_05 AC 63 ms
66,560 KB
testcase_06 AC 62 ms
66,304 KB
testcase_07 AC 62 ms
66,688 KB
testcase_08 AC 64 ms
66,560 KB
testcase_09 AC 152 ms
107,136 KB
testcase_10 AC 159 ms
106,624 KB
testcase_11 AC 149 ms
106,880 KB
testcase_12 AC 149 ms
106,880 KB
testcase_13 AC 150 ms
106,880 KB
testcase_14 AC 145 ms
106,880 KB
testcase_15 AC 131 ms
102,272 KB
testcase_16 AC 129 ms
102,272 KB
testcase_17 AC 131 ms
102,144 KB
testcase_18 AC 129 ms
106,880 KB
testcase_19 AC 65 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,M = map(int,input().split())
A = list(map(int,input().split()))
S = input()
d = deque(A)
for s in S:
    if s == "L":
        a = d.popleft()
        a += d.popleft()
        d.appendleft(a)
        d.append(0)
    else:
        a = d.pop()
        a += d.pop()
        d.append(a)
        d.appendleft(0)
print(*d)
0