結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 12354865271235486527
提出日時 2020-01-15 13:41:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 76,840 KB
最終ジャッジ日時 2024-06-10 20:57:19
合計ジャッジ時間 6,750 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
70,016 KB
testcase_01 AC 59 ms
65,152 KB
testcase_02 AC 46 ms
61,440 KB
testcase_03 AC 59 ms
64,384 KB
testcase_04 AC 63 ms
66,560 KB
testcase_05 AC 42 ms
61,500 KB
testcase_06 AC 81 ms
67,328 KB
testcase_07 AC 75 ms
68,480 KB
testcase_08 AC 113 ms
71,296 KB
testcase_09 AC 108 ms
72,192 KB
testcase_10 AC 119 ms
72,448 KB
testcase_11 AC 134 ms
71,552 KB
testcase_12 AC 35 ms
52,352 KB
testcase_13 AC 34 ms
51,584 KB
testcase_14 AC 33 ms
51,968 KB
testcase_15 AC 32 ms
52,352 KB
testcase_16 AC 33 ms
51,968 KB
testcase_17 AC 124 ms
65,536 KB
testcase_18 AC 77 ms
70,912 KB
testcase_19 AC 104 ms
71,040 KB
testcase_20 AC 99 ms
74,288 KB
testcase_21 AC 58 ms
67,200 KB
testcase_22 AC 51 ms
64,256 KB
testcase_23 AC 42 ms
61,444 KB
testcase_24 AC 47 ms
62,848 KB
testcase_25 AC 49 ms
63,616 KB
testcase_26 AC 38 ms
58,752 KB
testcase_27 AC 34 ms
51,968 KB
testcase_28 AC 50 ms
65,152 KB
testcase_29 AC 46 ms
61,952 KB
testcase_30 AC 42 ms
61,440 KB
testcase_31 AC 48 ms
64,256 KB
testcase_32 AC 51 ms
64,640 KB
testcase_33 AC 98 ms
76,840 KB
testcase_34 AC 133 ms
73,944 KB
testcase_35 AC 102 ms
71,168 KB
testcase_36 AC 76 ms
70,400 KB
testcase_37 AC 107 ms
73,728 KB
testcase_38 AC 101 ms
68,096 KB
testcase_39 AC 148 ms
72,320 KB
testcase_40 AC 128 ms
76,708 KB
testcase_41 AC 129 ms
76,548 KB
testcase_42 AC 124 ms
68,096 KB
testcase_43 AC 122 ms
74,880 KB
testcase_44 AC 85 ms
72,448 KB
testcase_45 AC 142 ms
76,572 KB
testcase_46 AC 68 ms
70,912 KB
testcase_47 AC 91 ms
67,712 KB
testcase_48 AC 83 ms
71,296 KB
testcase_49 AC 91 ms
68,736 KB
testcase_50 AC 101 ms
70,656 KB
testcase_51 AC 99 ms
74,240 KB
testcase_52 AC 97 ms
73,088 KB
testcase_53 AC 120 ms
74,624 KB
testcase_54 AC 74 ms
71,168 KB
testcase_55 AC 62 ms
67,328 KB
testcase_56 AC 112 ms
76,576 KB
testcase_57 AC 92 ms
74,368 KB
testcase_58 AC 36 ms
52,096 KB
testcase_59 AC 35 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
A = tuple(map(int, input().split()))
Q = int(input())
K = tuple(map(int, input().split()))
E = [0]
for s in S:
    E.append(E[-1] + (1 if s == 'E' else 0))

for i in range(Q):
    req = 0
    ans = 0
    right = 0
    for left in range(N):
        while right < N and req + A[right] <= K[i]:
            req += A[right]
            right += 1
        ans = max(ans, E[right] - E[left])
        if left == right:
            right += 1
        else:
            req -= A[left]
    print(ans)
0