結果

問題 No.1021 Children in Classrooms
ユーザー w0mbatw0mbat
提出日時 2020-04-24 20:55:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-10-15 02:08:17
合計ジャッジ時間 3,957 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 38 ms
51,456 KB
testcase_03 AC 56 ms
64,384 KB
testcase_04 AC 58 ms
65,280 KB
testcase_05 AC 63 ms
64,640 KB
testcase_06 AC 56 ms
64,896 KB
testcase_07 AC 57 ms
65,024 KB
testcase_08 WA -
testcase_09 AC 134 ms
109,696 KB
testcase_10 AC 132 ms
109,440 KB
testcase_11 AC 137 ms
109,696 KB
testcase_12 AC 145 ms
109,568 KB
testcase_13 AC 148 ms
109,568 KB
testcase_14 AC 148 ms
109,952 KB
testcase_15 AC 114 ms
102,016 KB
testcase_16 WA -
testcase_17 AC 114 ms
102,272 KB
testcase_18 WA -
testcase_19 AC 59 ms
72,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
*A,=map(int, input().split())
S=input()

l=0
r=N-1
k=0
i=0
for s in S:
    if s=='L':
        i-=1
        l=max(l,-i)
        k=max(0,k-1)
    else:
        i+=1
        r=min(r,N-1-i)
        k=min(N-1,k+1)
ans=[0]*N
for i in range(N):
    if i<=l:
        ans[k]+=A[i]
    elif i<r:
        ans[k+i-l]+=A[i]
    else:
        ans[k+r-l]+=A[i]
print(*ans)
0