結果

問題 No.1021 Children in Classrooms
ユーザー 👑 KazunKazun
提出日時 2020-06-10 17:40:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 106,496 KB
最終ジャッジ日時 2024-06-23 09:52:22
合計ジャッジ時間 3,984 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 57 ms
65,152 KB
testcase_04 AC 53 ms
65,536 KB
testcase_05 AC 55 ms
65,792 KB
testcase_06 AC 54 ms
65,792 KB
testcase_07 AC 53 ms
65,920 KB
testcase_08 AC 60 ms
68,992 KB
testcase_09 AC 115 ms
105,600 KB
testcase_10 AC 111 ms
105,472 KB
testcase_11 AC 111 ms
105,736 KB
testcase_12 AC 122 ms
105,472 KB
testcase_13 AC 121 ms
106,240 KB
testcase_14 AC 124 ms
105,940 KB
testcase_15 AC 107 ms
98,304 KB
testcase_16 AC 102 ms
98,560 KB
testcase_17 AC 105 ms
99,200 KB
testcase_18 AC 102 ms
106,496 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

m=0
x,y=0,0
for d in S:
    if d=="L":
        m=max(m-1,-(N-1))
        x=min(m,x)
    else:
        m=min(m+1,N-1)
        y=max(m,y)

x=-x
y=(N-1)-y
for i in range(N):
    if i<x:
        A[x]+=A[i]
        A[i]=0
    elif y<i:
        A[y]+=A[i]
        A[i]=0

for i in range(N):
    if 0<=i-m<N:
        print(A[i-m],end=" ")
    else:
        print(0,end=" ")
print()
    
0