結果

問題 No.1021 Children in Classrooms
ユーザー ningenMeningenMe
提出日時 2020-03-06 02:14:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 404 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,148 KB
最終ジャッジ日時 2024-11-30 23:43:39
合計ジャッジ時間 24,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,440 KB
testcase_01 AC 31 ms
45,560 KB
testcase_02 AC 31 ms
17,440 KB
testcase_03 AC 33 ms
45,532 KB
testcase_04 AC 34 ms
17,700 KB
testcase_05 AC 34 ms
45,428 KB
testcase_06 AC 34 ms
17,568 KB
testcase_07 AC 35 ms
45,684 KB
testcase_08 AC 34 ms
17,572 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 919 ms
29,788 KB
testcase_16 AC 926 ms
29,780 KB
testcase_17 AC 1,066 ms
30,672 KB
testcase_18 AC 1,587 ms
35,164 KB
testcase_19 AC 131 ms
49,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = [0]*(M+N+M)
tmp = list(map(int,input().split()))
for i in range(N):
    A[i+M] = tmp[i]
S = input()
l = M
r = M + N - 1
for c in S:
    if c == 'L':
        A[l+1] += A[l]
        A[l] = 0
        l += 1
        r += 1
    else:
        A[r-1] += A[r]
        A[r] = 0
        l -= 1
        r -= 1
ans = ""
for i in range(l,r+1):
    ans += str(A[i]) + " "
print(ans)
0