結果

問題 No.1021 Children in Classrooms
ユーザー c-yanc-yan
提出日時 2020-04-11 00:46:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,488 KB
最終ジャッジ日時 2024-09-16 04:48:54
合計ジャッジ時間 5,737 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 34 ms
10,496 KB
testcase_02 AC 31 ms
10,368 KB
testcase_03 AC 34 ms
10,624 KB
testcase_04 AC 35 ms
10,752 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 35 ms
10,496 KB
testcase_07 AC 36 ms
11,008 KB
testcase_08 AC 37 ms
10,880 KB
testcase_09 AC 356 ms
30,124 KB
testcase_10 AC 362 ms
29,844 KB
testcase_11 AC 351 ms
30,256 KB
testcase_12 AC 347 ms
30,252 KB
testcase_13 AC 347 ms
29,996 KB
testcase_14 AC 348 ms
30,260 KB
testcase_15 AC 328 ms
25,388 KB
testcase_16 AC 337 ms
25,220 KB
testcase_17 AC 332 ms
26,312 KB
testcase_18 AC 381 ms
30,488 KB
testcase_19 AC 178 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
a = list(map(int, input().split()))
S = input()

t = 0
for c in S:
    if c == 'L':
        t = max(t - 1, -N + 1)
        if t < 0:
            a[-t] += a[-(t + 1)]
            a[-(t + 1)] = 0
    elif c == 'R':
        t = min(t + 1, N - 1)
        if t > 0:
            a[N - 1 - t] += a[N - t]
            a[N - t] = 0

if t > 0:
    print(*(([0] * t) + a)[:N])
elif t < 0:
    print(*(a + ([0] * -t))[-t:N - t])
else:
    print(*a)
0