結果

問題 No.1021 Children in Classrooms
ユーザー NoviNovi
提出日時 2020-06-06 15:20:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,588 KB
最終ジャッジ日時 2024-06-06 02:05:53
合計ジャッジ時間 4,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
11,008 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 AC 265 ms
30,108 KB
testcase_10 AC 267 ms
30,208 KB
testcase_11 AC 270 ms
30,228 KB
testcase_12 AC 265 ms
30,104 KB
testcase_13 AC 262 ms
30,104 KB
testcase_14 AC 271 ms
30,360 KB
testcase_15 AC 232 ms
25,364 KB
testcase_16 AC 228 ms
25,704 KB
testcase_17 AC 237 ms
26,156 KB
testcase_18 AC 266 ms
30,588 KB
testcase_19 AC 111 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import  deque
n,m=map(int,input().split())
a=list(map(int,input().split()))
a=deque(a)
S=input()
for s in S:
    if s=="L":
        first=a.popleft()
        second=a.popleft()
        after=first+second
        a.appendleft(after)
        a.append(0)
    else:
        first=a.pop()
        second=a.pop()
        after=first+second
        a.append(after)
        a.appendleft(0)
print(*a)
0