結果

問題 No.1021 Children in Classrooms
ユーザー _matumo__matumo_
提出日時 2020-09-25 14:23:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,448 KB
最終ジャッジ日時 2024-06-28 05:48:54
合計ジャッジ時間 4,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 228 ms
29,320 KB
testcase_10 AC 226 ms
29,424 KB
testcase_11 AC 229 ms
29,444 KB
testcase_12 AC 222 ms
29,448 KB
testcase_13 AC 221 ms
29,448 KB
testcase_14 AC 223 ms
29,448 KB
testcase_15 AC 185 ms
24,588 KB
testcase_16 AC 185 ms
24,672 KB
testcase_17 AC 188 ms
25,648 KB
testcase_18 AC 225 ms
29,308 KB
testcase_19 AC 69 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def main():
    N,M=map(int,input().split())
    d=deque(map(int,input().split()))
    S=input()
    for c in S:
        if c=='L':
            n=d.popleft()
            d[0]+=n
            d.append(0)
        if c=='R':
            n=d.pop()
            d[-1]+=n
            d.appendleft(0)
    print(*d)
main()
0