結果

問題 No.1021 Children in Classrooms
ユーザー timitimi
提出日時 2020-10-09 17:18:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,524 KB
最終ジャッジ日時 2024-07-20 06:51:52
合計ジャッジ時間 7,124 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 37 ms
10,752 KB
testcase_04 AC 36 ms
10,880 KB
testcase_05 AC 36 ms
10,752 KB
testcase_06 AC 37 ms
11,008 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 393 ms
30,040 KB
testcase_10 AC 401 ms
30,272 KB
testcase_11 AC 406 ms
30,172 KB
testcase_12 AC 419 ms
30,300 KB
testcase_13 AC 419 ms
30,300 KB
testcase_14 AC 422 ms
30,300 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 456 ms
30,524 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
A=list(map(int, input().split()))
s=input()
c=0
cmi,cma=0,0
for i in s:
  if i=='L':
    c-=1
  else:
    c+=1
  cmi=min(cmi,c)
  cma=max(cma,c)
cmi*=(-1)
d=0
for i in range(min(cmi,N-1)):
  A[i+1]+=A[i]
  A[i]=0
for i in range(min(cma,N-1)):
  A[-2-i]+=A[-1-i]
  A[-1-i]=0
c=min(N-1,c)
c=max(-N+1,c)
if c==0:
  print(*A)
elif c>0:
  ans=[0]*c
  for i in range(N-c):
    ans.append(A[i])
  print(*ans)
else:
  c*=-1
  ans=[]
  for i in range(c,N):
    ans.append(A[i])
  ans=ans+[0]*c
  print(*ans)
0