結果

問題 No.1021 Children in Classrooms
ユーザー yuly3yuly3
提出日時 2020-05-01 00:14:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 100,608 KB
最終ジャッジ日時 2024-05-10 03:16:55
合計ジャッジ時間 4,234 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 AC 84 ms
66,176 KB
testcase_04 AC 60 ms
66,560 KB
testcase_05 AC 59 ms
66,176 KB
testcase_06 AC 60 ms
66,048 KB
testcase_07 AC 62 ms
66,432 KB
testcase_08 AC 60 ms
66,688 KB
testcase_09 AC 150 ms
100,096 KB
testcase_10 AC 140 ms
100,096 KB
testcase_11 AC 147 ms
100,352 KB
testcase_12 AC 149 ms
100,096 KB
testcase_13 AC 148 ms
100,608 KB
testcase_14 AC 139 ms
100,608 KB
testcase_15 AC 119 ms
91,964 KB
testcase_16 AC 121 ms
91,908 KB
testcase_17 AC 126 ms
91,800 KB
testcase_18 AC 133 ms
99,796 KB
testcase_19 AC 76 ms
76,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


def solve():
    _, _ = map(int, rl().split())
    a = deque(map(int, rl().split()))
    S = input()
    
    for si in S:
        if si == 'L':
            tmp = a.popleft()
            a[0] += tmp
            a.append(0)
        else:
            tmp = a.pop()
            a[-1] += tmp
            a.appendleft(0)
    print(*a)


if __name__ == '__main__':
    solve()
0