結果

問題 No.1021 Children in Classrooms
ユーザー tamatotamato
提出日時 2020-04-10 21:28:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 106,240 KB
最終ジャッジ日時 2024-09-15 19:10:43
合計ジャッジ時間 3,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,864 KB
testcase_01 AC 44 ms
53,248 KB
testcase_02 AC 44 ms
52,864 KB
testcase_03 AC 68 ms
65,920 KB
testcase_04 AC 66 ms
66,048 KB
testcase_05 AC 66 ms
65,664 KB
testcase_06 AC 65 ms
66,560 KB
testcase_07 AC 66 ms
66,432 KB
testcase_08 AC 66 ms
66,304 KB
testcase_09 AC 158 ms
106,112 KB
testcase_10 AC 161 ms
106,240 KB
testcase_11 AC 159 ms
105,984 KB
testcase_12 AC 158 ms
105,984 KB
testcase_13 AC 160 ms
106,240 KB
testcase_14 AC 152 ms
105,856 KB
testcase_15 AC 142 ms
101,632 KB
testcase_16 AC 143 ms
101,504 KB
testcase_17 AC 147 ms
101,504 KB
testcase_18 AC 144 ms
105,856 KB
testcase_19 AC 66 ms
71,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

    N, M = map(int, input().split())
    A = deque(list(map(int, input().split())))
    S = input().rstrip('\n')

    for s in S:
        if s == 'R':
            a1 = A.pop()
            a2 = A.pop()
            A.append(a1+a2)
            A.appendleft(0)
        else:
            a1 = A.popleft()
            a2 = A.popleft()
            A.appendleft(a1 + a2)
            A.append(0)
    print(*A)


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