結果

問題 No.1021 Children in Classrooms
ユーザー yuly3yuly3
提出日時 2020-05-01 00:14:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 100,588 KB
最終ジャッジ日時 2024-12-17 23:59:20
合計ジャッジ時間 4,245 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,028 KB
testcase_01 AC 42 ms
54,256 KB
testcase_02 AC 43 ms
54,688 KB
testcase_03 AC 57 ms
67,600 KB
testcase_04 AC 59 ms
66,416 KB
testcase_05 AC 57 ms
67,468 KB
testcase_06 AC 58 ms
66,920 KB
testcase_07 AC 58 ms
66,680 KB
testcase_08 AC 59 ms
67,892 KB
testcase_09 AC 138 ms
100,084 KB
testcase_10 AC 138 ms
100,216 KB
testcase_11 AC 139 ms
100,588 KB
testcase_12 AC 136 ms
100,340 KB
testcase_13 AC 140 ms
100,584 KB
testcase_14 AC 134 ms
100,264 KB
testcase_15 AC 119 ms
91,812 KB
testcase_16 AC 119 ms
91,676 KB
testcase_17 AC 124 ms
91,856 KB
testcase_18 AC 129 ms
100,108 KB
testcase_19 AC 73 ms
76,276 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