結果

問題 No.1021 Children in Classrooms
ユーザー timitimi
提出日時 2020-10-12 16:34:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,640 KB
最終ジャッジ日時 2024-07-20 18:04:05
合計ジャッジ時間 6,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 428 ms
30,280 KB
testcase_10 AC 434 ms
30,256 KB
testcase_11 AC 437 ms
30,412 KB
testcase_12 AC 441 ms
30,156 KB
testcase_13 AC 446 ms
30,284 KB
testcase_14 AC 446 ms
30,280 KB
testcase_15 AC 402 ms
25,416 KB
testcase_16 AC 460 ms
25,492 KB
testcase_17 AC 410 ms
26,336 KB
testcase_18 AC 522 ms
30,640 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
A=list(map(int, input().split()))
s=input()
L,R=0,N-1
d=0
cmi,cma=0,0
for i in s:
    if i=='L':
        L=max(0,L-1)
        R=max(0,R-1)
        d-=1
        if d==-N:
            d+=1
        cmi=min(d,cmi)
    else:
        L=min(N-1,L+1)
        R=min(N-1,R+1)
        d+=1
        if d==N:
            d-=1
        cma=max(d,cma)

cmi*=-1
for i in range(cmi):
    A[i+1]+=A[i]
    A[i]=0
for i in range(cma):
    A[-2-i]+=A[-1-i]
    A[-1-i]=0

B=A[cmi:N-cma]
ans=[0]*L+B+[0]*(N-R-1)
print(*ans)
0