結果

問題 No.1021 Children in Classrooms
ユーザー KodaiKodai
提出日時 2020-04-13 20:00:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,138 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,604 KB
最終ジャッジ日時 2024-09-25 07:46:04
合計ジャッジ時間 12,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 33 ms
11,008 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 1,134 ms
30,112 KB
testcase_10 AC 1,132 ms
30,220 KB
testcase_11 AC 1,133 ms
30,244 KB
testcase_12 AC 1,133 ms
30,248 KB
testcase_13 AC 1,135 ms
30,120 KB
testcase_14 AC 1,132 ms
30,376 KB
testcase_15 AC 715 ms
25,384 KB
testcase_16 AC 733 ms
25,464 KB
testcase_17 AC 781 ms
26,176 KB
testcase_18 AC 1,138 ms
30,604 KB
testcase_19 AC 107 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = list(map(int, input().split()))
A_list = deque(list(map(int, input().split())))
S = input()

for i in S:
    if i == "L":
        temp1 = A_list.popleft()
        temp2 = A_list.popleft()
        A_list.appendleft(temp1+temp2)
        A_list.append(0)
    else:
        temp1 = A_list.pop()
        temp2 = A_list.pop()
        A_list.append(temp1+temp2)
        A_list.appendleft(0)

for i in range(len(A_list)-1):
    print(A_list[i], end=" ")
print(A_list[-1])
0