結果

問題 No.1021 Children in Classrooms
ユーザー takakintakakin
提出日時 2020-05-23 20:02:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 492 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,628 KB
最終ジャッジ日時 2024-04-17 07:51:08
合計ジャッジ時間 6,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 33 ms
11,008 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 34 ms
10,880 KB
testcase_08 AC 34 ms
11,008 KB
testcase_09 AC 479 ms
30,140 KB
testcase_10 AC 469 ms
30,120 KB
testcase_11 AC 491 ms
30,144 KB
testcase_12 AC 487 ms
30,272 KB
testcase_13 AC 487 ms
30,016 KB
testcase_14 AC 495 ms
30,276 KB
testcase_15 AC 415 ms
25,404 KB
testcase_16 AC 416 ms
25,492 KB
testcase_17 AC 433 ms
26,204 KB
testcase_18 AC 480 ms
30,628 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,m=map(int,input().split())
A=[int(i) for i in input().split()]
S=input()
ct1,ct2,ct3=0,0,0
for s in S:
  if s=="L":
    if ct1==-(n-1):
      continue
    else:
      ct1-=1
  else:
    if ct1==n-1:
      continue
    else:
      ct1+=1
  ct2=max(ct1,ct2)
  ct3=min(ct1,ct3)
Ans=[0]*n
for i in range(n):
  if i<abs(ct3):
    Ans[abs(ct3)+ct1]+=A[i]
  elif i>=n-1-ct2:
    Ans[n-1-ct2+ct1]+=A[i]
  else:
    Ans[i+ct1]+=A[i]
print(*Ans)
0