結果

問題 No.1021 Children in Classrooms
ユーザー ttrttr
提出日時 2020-05-24 16:17:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,640 KB
最終ジャッジ日時 2024-10-11 20:27:02
合計ジャッジ時間 8,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 37 ms
10,880 KB
testcase_04 AC 37 ms
11,008 KB
testcase_05 AC 36 ms
10,880 KB
testcase_06 AC 36 ms
11,008 KB
testcase_07 AC 38 ms
11,008 KB
testcase_08 AC 38 ms
11,008 KB
testcase_09 AC 609 ms
30,280 KB
testcase_10 AC 621 ms
30,260 KB
testcase_11 AC 620 ms
30,284 KB
testcase_12 AC 618 ms
30,152 KB
testcase_13 AC 632 ms
30,284 KB
testcase_14 AC 611 ms
30,412 KB
testcase_15 AC 544 ms
25,548 KB
testcase_16 AC 559 ms
25,628 KB
testcase_17 AC 550 ms
26,388 KB
testcase_18 AC 604 ms
30,640 KB
testcase_19 AC 407 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
A = [int(a) for a in input().split()]
S = input()

l = 0
r = N-1
l2 = 0
r2 = 0
for i in range(M):
    if S[i] == "L" and l2 == 0:
        l += 1
        r2 += 1
    elif S[i] == "R" and r2 == 0:
        r -= 1
        l2 += 1
    elif S[i] == "L":
        l2 -= 1
        r2 += 1
    else:
        r2 -= 1
        l2 += 1
    l2 = min(l2, N-1)
    r2 = min(r2, N-1)
    l = min(l, N-1)
    r = max(r, 0)

if l >= r:
    ans = [0]*l2 + [sum(A)] + [0]*r2
else:
    ans = [0]*l2 + [sum(A[:l+1])] + A[l+1:r] + [sum(A[r:])] + [0]*r2
print(*ans)
0