結果

問題 No.1021 Children in Classrooms
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-07 18:26:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,716 KB
最終ジャッジ日時 2024-06-22 02:11:17
合計ジャッジ時間 4,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 34 ms
11,008 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
11,008 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 271 ms
30,360 KB
testcase_10 AC 281 ms
30,208 KB
testcase_11 AC 271 ms
30,360 KB
testcase_12 AC 272 ms
30,236 KB
testcase_13 AC 274 ms
30,356 KB
testcase_14 AC 265 ms
30,360 KB
testcase_15 AC 221 ms
25,488 KB
testcase_16 AC 238 ms
25,572 KB
testcase_17 AC 242 ms
26,284 KB
testcase_18 AC 272 ms
30,716 KB
testcase_19 AC 102 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m=map(int,input().split())
a=list(map(int,input().split()))
s=input()
q=deque()
for i in a:
    q.append(i)
for i in s:
    if i=='L':
        out1=q.popleft()
        out2=q.popleft()
        q.appendleft(out1+out2)
        q.append(0)
    else:
        out1=q.pop()
        out2=q.pop()
        q.append(out1+out2)
        q.appendleft(0)
print(*q)
0