結果

問題 No.1021 Children in Classrooms
ユーザー yansi819yansi819
提出日時 2024-05-11 09:08:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 101,460 KB
最終ジャッジ日時 2024-05-11 09:08:52
合計ジャッジ時間 4,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,284 KB
testcase_01 AC 42 ms
54,712 KB
testcase_02 AC 41 ms
53,724 KB
testcase_03 AC 71 ms
67,764 KB
testcase_04 AC 60 ms
67,512 KB
testcase_05 AC 57 ms
66,820 KB
testcase_06 AC 59 ms
67,612 KB
testcase_07 AC 59 ms
67,980 KB
testcase_08 AC 57 ms
67,404 KB
testcase_09 AC 142 ms
101,256 KB
testcase_10 AC 145 ms
101,460 KB
testcase_11 AC 137 ms
101,460 KB
testcase_12 AC 138 ms
101,132 KB
testcase_13 AC 143 ms
101,004 KB
testcase_14 AC 135 ms
101,064 KB
testcase_15 AC 114 ms
92,484 KB
testcase_16 AC 118 ms
92,964 KB
testcase_17 AC 117 ms
92,800 KB
testcase_18 AC 131 ms
101,136 KB
testcase_19 AC 72 ms
76,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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