結果

問題 No.1021 Children in Classrooms
ユーザー wattaiheiwattaihei
提出日時 2020-05-23 18:14:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,608 KB
最終ジャッジ日時 2024-10-08 16:36:16
合計ジャッジ時間 5,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 32 ms
11,008 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 283 ms
30,040 KB
testcase_10 AC 281 ms
30,096 KB
testcase_11 AC 275 ms
29,996 KB
testcase_12 AC 288 ms
30,120 KB
testcase_13 AC 279 ms
29,996 KB
testcase_14 AC 278 ms
30,128 KB
testcase_15 AC 235 ms
25,336 KB
testcase_16 AC 238 ms
25,344 KB
testcase_17 AC 248 ms
26,180 KB
testcase_18 AC 273 ms
30,608 KB
testcase_19 AC 108 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque

N, M = map(int, input().split())
A = list(map(int, input().split()))
S = input().rstrip()

q = deque()
for a in A:
    q.append(a)


for s in S:
    if s == "L":
        q.append(0)
        a = q.popleft()
        b = q.popleft()
        q.appendleft(a+b)
    else:
        q.appendleft(0)
        a = q.pop()
        b = q.pop()
        q.append(a+b)

print(*q)
0