結果

問題 No.1021 Children in Classrooms
ユーザー timitimi
提出日時 2020-10-09 17:26:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,736 KB
最終ジャッジ日時 2024-07-20 06:52:20
合計ジャッジ時間 6,998 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 34 ms
10,752 KB
testcase_04 AC 35 ms
10,880 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 34 ms
10,880 KB
testcase_07 AC 36 ms
11,008 KB
testcase_08 AC 36 ms
10,880 KB
testcase_09 AC 432 ms
30,120 KB
testcase_10 AC 437 ms
30,244 KB
testcase_11 AC 446 ms
30,240 KB
testcase_12 AC 473 ms
30,244 KB
testcase_13 AC 456 ms
30,244 KB
testcase_14 AC 455 ms
30,240 KB
testcase_15 AC 406 ms
25,560 KB
testcase_16 AC 437 ms
25,392 KB
testcase_17 AC 416 ms
27,232 KB
testcase_18 AC 498 ms
31,736 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
  if c<-1*(N-1):
    c+=1
  if c>(N-1):
    c-=1
  cmi=min(cmi,c)
  cma=max(cma,c)
  
cmi*=(-1)
d=0
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
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