結果

問題 No.1021 Children in Classrooms
ユーザー ronpooronpoo
提出日時 2023-11-21 15:12:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,668 KB
実行使用メモリ 107,264 KB
最終ジャッジ日時 2024-09-26 07:11:08
合計ジャッジ時間 3,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,888 KB
testcase_01 AC 39 ms
53,504 KB
testcase_02 AC 36 ms
53,376 KB
testcase_03 AC 51 ms
66,176 KB
testcase_04 AC 52 ms
66,304 KB
testcase_05 AC 53 ms
66,432 KB
testcase_06 AC 53 ms
66,560 KB
testcase_07 AC 52 ms
66,688 KB
testcase_08 AC 52 ms
66,688 KB
testcase_09 AC 134 ms
107,196 KB
testcase_10 AC 139 ms
107,136 KB
testcase_11 AC 131 ms
107,136 KB
testcase_12 AC 128 ms
107,264 KB
testcase_13 AC 127 ms
107,160 KB
testcase_14 AC 124 ms
107,136 KB
testcase_15 AC 112 ms
102,336 KB
testcase_16 AC 113 ms
102,172 KB
testcase_17 AC 112 ms
102,144 KB
testcase_18 AC 113 ms
106,752 KB
testcase_19 AC 48 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

q = deque(A)
for i in range(M):
    if S[i] == 'L':
        x = q.popleft()
        x += q.popleft()
        q.appendleft(x)
        q.append(0)        
    else:
        x = q.pop()
        x += q.pop()
        q.append(x)
        q.appendleft(0)        
print(*q, sep=' ')
0