結果

問題 No.1021 Children in Classrooms
ユーザー stngstng
提出日時 2020-04-11 19:49:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,596 KB
最終ジャッジ日時 2024-09-19 07:39:32
合計ジャッジ時間 4,205 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 30 ms
11,136 KB
testcase_08 AC 28 ms
11,008 KB
testcase_09 AC 266 ms
30,244 KB
testcase_10 AC 252 ms
30,092 KB
testcase_11 AC 260 ms
30,116 KB
testcase_12 AC 253 ms
30,240 KB
testcase_13 AC 256 ms
30,116 KB
testcase_14 AC 251 ms
30,248 KB
testcase_15 AC 210 ms
25,340 KB
testcase_16 AC 217 ms
25,592 KB
testcase_17 AC 220 ms
26,172 KB
testcase_18 AC 257 ms
30,596 KB
testcase_19 AC 105 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m = map(int,input().split())
ai = [int(i) for i in input().split()]
s = input()

d = deque(ai)

for i in range(m):
    if s[i] == 'L':
        tmp = d.popleft()
        d[0] = d[0]+tmp
        d.append(0)
    else:
        tmp = d.pop()
        d[-1] = d[-1]+tmp
        d.appendleft(0)
        
print(*d)
0