結果

問題 No.1021 Children in Classrooms
ユーザー uni_pythonuni_python
提出日時 2020-07-07 23:39:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 693 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 107,704 KB
最終ジャッジ日時 2024-10-01 21:46:26
合計ジャッジ時間 4,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,044 KB
testcase_01 AC 42 ms
53,680 KB
testcase_02 AC 40 ms
54,344 KB
testcase_03 AC 60 ms
64,432 KB
testcase_04 AC 53 ms
64,524 KB
testcase_05 AC 52 ms
65,932 KB
testcase_06 AC 52 ms
65,052 KB
testcase_07 AC 54 ms
65,388 KB
testcase_08 AC 52 ms
66,152 KB
testcase_09 AC 128 ms
107,688 KB
testcase_10 AC 129 ms
107,664 KB
testcase_11 AC 129 ms
107,456 KB
testcase_12 AC 128 ms
107,600 KB
testcase_13 AC 129 ms
107,704 KB
testcase_14 AC 124 ms
107,236 KB
testcase_15 AC 113 ms
102,252 KB
testcase_16 AC 113 ms
102,632 KB
testcase_17 AC 116 ms
102,772 KB
testcase_18 AC 115 ms
107,592 KB
testcase_19 AC 55 ms
66,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N,M=MI()
    A=LI()
    from collections import deque
    dq=deque(A)
    
    S=input()
    for i in range(M):
        if S[i]=="L":
            a=dq.popleft()
            b=dq.popleft()
            dq.appendleft(a+b)
            dq.append(0)
        else:
            a=dq.pop()
            b=dq.pop()
            dq.append(a+b)
            dq.appendleft(0)
        
    ans=[]    
    for i in range(N):
        ans.append(dq.popleft())
        
    print(' '.join(map(str, ans)))
            
            
 
        
        


main()
0