結果

問題 No.1021 Children in Classrooms
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-07-01 21:04:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 1,195 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,632 KB
最終ジャッジ日時 2024-06-28 10:23:11
合計ジャッジ時間 4,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 59 ms
63,616 KB
testcase_04 AC 58 ms
63,744 KB
testcase_05 AC 60 ms
63,744 KB
testcase_06 AC 58 ms
64,128 KB
testcase_07 AC 57 ms
63,616 KB
testcase_08 AC 58 ms
64,256 KB
testcase_09 AC 137 ms
105,728 KB
testcase_10 AC 136 ms
105,472 KB
testcase_11 AC 135 ms
105,344 KB
testcase_12 AC 134 ms
105,600 KB
testcase_13 AC 131 ms
105,216 KB
testcase_14 AC 132 ms
105,600 KB
testcase_15 AC 116 ms
98,688 KB
testcase_16 AC 113 ms
98,560 KB
testcase_17 AC 112 ms
98,816 KB
testcase_18 AC 130 ms
117,632 KB
testcase_19 AC 70 ms
75,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
s=input()
stat=0
for o in s:
  if o=='L':
    stat+=1
    if 0<stat<n:
      a[stat]+=a[stat-1]
      a[stat-1]=0
    if stat==n:stat=n-1
  else:
    stat-=1
    if -n<stat<0:
      a[stat-1]+=a[stat]
      a[stat]=0
    if stat==-n:stat=-n+1
a=list(a)
if stat==0:
  print(*a)
else:
  print(*a[stat:]+a[:stat])

0