結果

問題 No.1021 Children in Classrooms
ユーザー H20H20
提出日時 2020-12-01 13:37:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 107,672 KB
最終ジャッジ日時 2024-09-13 02:57:54
合計ジャッジ時間 4,328 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,212 KB
testcase_01 AC 41 ms
53,784 KB
testcase_02 AC 43 ms
54,140 KB
testcase_03 AC 58 ms
68,384 KB
testcase_04 AC 62 ms
68,328 KB
testcase_05 AC 59 ms
67,776 KB
testcase_06 AC 58 ms
67,084 KB
testcase_07 AC 59 ms
68,912 KB
testcase_08 AC 58 ms
67,444 KB
testcase_09 AC 146 ms
107,520 KB
testcase_10 AC 153 ms
107,264 KB
testcase_11 AC 146 ms
107,484 KB
testcase_12 AC 144 ms
107,672 KB
testcase_13 AC 144 ms
107,576 KB
testcase_14 AC 144 ms
107,452 KB
testcase_15 AC 123 ms
102,920 KB
testcase_16 AC 125 ms
102,628 KB
testcase_17 AC 127 ms
102,448 KB
testcase_18 AC 133 ms
107,528 KB
testcase_19 AC 71 ms
76,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
A = deque(list(map(int,input().split())))
S = input()
for i in range(M):
    if S[i]=='L':
        temp = A.popleft()
        A[0] += temp
        A.append(0)
    else:
        temp = A.pop()
        A[-1] += temp
        A.appendleft(0)
print(*list(A))

0