結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー roarisroaris
提出日時 2019-12-12 16:48:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 1,624 ms
コンパイル使用メモリ 81,392 KB
実行使用メモリ 76,720 KB
最終ジャッジ日時 2024-09-14 06:04:29
合計ジャッジ時間 7,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
76,232 KB
testcase_01 AC 64 ms
68,792 KB
testcase_02 AC 44 ms
58,880 KB
testcase_03 AC 59 ms
65,384 KB
testcase_04 AC 63 ms
65,664 KB
testcase_05 AC 47 ms
60,800 KB
testcase_06 AC 88 ms
76,316 KB
testcase_07 AC 93 ms
76,536 KB
testcase_08 AC 123 ms
76,384 KB
testcase_09 AC 101 ms
76,372 KB
testcase_10 AC 125 ms
76,208 KB
testcase_11 AC 170 ms
76,720 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 37 ms
51,840 KB
testcase_14 AC 37 ms
52,224 KB
testcase_15 AC 36 ms
52,096 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 142 ms
76,368 KB
testcase_18 AC 84 ms
75,904 KB
testcase_19 AC 115 ms
76,544 KB
testcase_20 AC 104 ms
75,560 KB
testcase_21 AC 65 ms
69,120 KB
testcase_22 AC 54 ms
63,872 KB
testcase_23 AC 50 ms
61,312 KB
testcase_24 AC 51 ms
61,824 KB
testcase_25 AC 49 ms
61,440 KB
testcase_26 AC 42 ms
57,856 KB
testcase_27 AC 37 ms
52,352 KB
testcase_28 AC 51 ms
61,952 KB
testcase_29 AC 50 ms
62,464 KB
testcase_30 AC 46 ms
60,160 KB
testcase_31 AC 51 ms
63,104 KB
testcase_32 AC 54 ms
64,256 KB
testcase_33 AC 100 ms
75,520 KB
testcase_34 AC 147 ms
76,572 KB
testcase_35 AC 117 ms
76,244 KB
testcase_36 AC 73 ms
73,096 KB
testcase_37 AC 109 ms
76,160 KB
testcase_38 AC 118 ms
76,120 KB
testcase_39 AC 164 ms
76,604 KB
testcase_40 AC 140 ms
76,672 KB
testcase_41 AC 140 ms
76,532 KB
testcase_42 AC 141 ms
76,612 KB
testcase_43 AC 143 ms
76,524 KB
testcase_44 AC 101 ms
76,356 KB
testcase_45 AC 142 ms
76,444 KB
testcase_46 AC 76 ms
75,716 KB
testcase_47 AC 109 ms
76,340 KB
testcase_48 AC 91 ms
75,596 KB
testcase_49 AC 104 ms
76,132 KB
testcase_50 AC 106 ms
75,940 KB
testcase_51 AC 111 ms
76,620 KB
testcase_52 AC 110 ms
76,452 KB
testcase_53 AC 132 ms
76,384 KB
testcase_54 AC 81 ms
75,668 KB
testcase_55 AC 61 ms
67,072 KB
testcase_56 AC 118 ms
76,672 KB
testcase_57 AC 104 ms
76,536 KB
testcase_58 AC 38 ms
51,712 KB
testcase_59 AC 37 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(K):
    r = 0
    res = 0
    k = K

    for l in range(N):
        while r<N and k-A[r]>=0:
            k -= A[r]
            r += 1
        
        res = max(res, acc[r]-acc[l])
        
        if l==r:
            r += 1
        else:
            k += A[l]
    
    return res
            
N = int(input())
S = input()
A = list(map(int, input().split()))
Q = int(input())
K = list(map(int, input().split()))
acc = [0]

for Si in S:
    acc.append(acc[-1]+(1 if Si=='E' else 0))
    
for Ki in K:
    print(calc(Ki))
0