結果

問題 No.1021 Children in Classrooms
ユーザー rlangevinrlangevin
提出日時 2023-01-21 16:26:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 105,240 KB
最終ジャッジ日時 2024-06-23 23:57:42
合計ジャッジ時間 3,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,200 KB
testcase_01 AC 42 ms
53,856 KB
testcase_02 AC 43 ms
54,768 KB
testcase_03 AC 58 ms
67,116 KB
testcase_04 AC 56 ms
67,176 KB
testcase_05 AC 58 ms
66,220 KB
testcase_06 AC 57 ms
66,428 KB
testcase_07 AC 56 ms
67,340 KB
testcase_08 AC 57 ms
66,784 KB
testcase_09 AC 149 ms
104,172 KB
testcase_10 AC 161 ms
104,764 KB
testcase_11 AC 151 ms
104,036 KB
testcase_12 AC 147 ms
104,296 KB
testcase_13 AC 146 ms
104,296 KB
testcase_14 AC 142 ms
104,296 KB
testcase_15 AC 130 ms
96,336 KB
testcase_16 AC 128 ms
96,152 KB
testcase_17 AC 133 ms
97,224 KB
testcase_18 AC 136 ms
105,240 KB
testcase_19 AC 72 ms
85,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

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