結果

問題 No.1021 Children in Classrooms
ユーザー ValkyrjaValkyrja
提出日時 2020-05-13 01:01:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,832 KB
最終ジャッジ日時 2024-09-14 04:39:52
合計ジャッジ時間 7,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 34 ms
10,880 KB
testcase_04 AC 39 ms
11,008 KB
testcase_05 AC 36 ms
11,008 KB
testcase_06 AC 35 ms
11,136 KB
testcase_07 AC 36 ms
11,008 KB
testcase_08 AC 36 ms
11,008 KB
testcase_09 AC 479 ms
31,224 KB
testcase_10 AC 474 ms
30,964 KB
testcase_11 AC 475 ms
31,092 KB
testcase_12 AC 493 ms
31,092 KB
testcase_13 AC 493 ms
31,224 KB
testcase_14 AC 491 ms
31,096 KB
testcase_15 AC 434 ms
25,412 KB
testcase_16 AC 429 ms
25,624 KB
testcase_17 AC 445 ms
26,296 KB
testcase_18 AC 476 ms
31,832 KB
testcase_19 AC 288 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=[int(j) for j in input().split()]
s=input()
l,r=0,0
p,q,tmp=0,0,0
for i in s:
    if i=="L":
        r=min(n-1,r+1)
        l=max(0,l-1)
        tmp-=1
        p=max(p,-tmp)
    else:
        l=min(n-1,l+1)
        r=max(0,r-1)
        tmp+=1
        q=max(q,tmp)

if p+q>=n:
    ans=[0]*l+[sum(a)]+[0]*r
else:
    ans=[0]*l+[sum(a[:p+1])]+a[p+1:-q-1]+[sum(a[-q-1:])]+[0]*r
print(*ans)
0