結果

問題 No.1021 Children in Classrooms
ユーザー w0mbatw0mbat
提出日時 2020-04-24 20:30:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,696 KB
最終ジャッジ日時 2024-10-15 02:06:47
合計ジャッジ時間 4,252 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 64 ms
65,920 KB
testcase_04 AC 59 ms
65,792 KB
testcase_05 AC 60 ms
65,792 KB
testcase_06 AC 61 ms
66,688 KB
testcase_07 WA -
testcase_08 AC 65 ms
65,664 KB
testcase_09 AC 140 ms
109,440 KB
testcase_10 AC 138 ms
109,568 KB
testcase_11 AC 138 ms
109,696 KB
testcase_12 AC 147 ms
109,696 KB
testcase_13 AC 148 ms
109,440 KB
testcase_14 AC 150 ms
109,568 KB
testcase_15 WA -
testcase_16 AC 113 ms
102,144 KB
testcase_17 WA -
testcase_18 AC 123 ms
109,696 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

l=r=0
i=imin=imax=0
for s in S:
    if s=='L':
        l+=1
        i-=1
    else:
        r+=1
        i+=1
    imin = min(imin, i)
    imax = max(imax, i)

ans=[0]*N
for i in range(N):
    j=i
    j+=max(0, -imin-j)
    j-=max(0, imax-(N-j-1))
    j=j+r-l
    j=max(0,min(N-1,j))
    ans[j]+=A[i]
print(*ans)
0