結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー toyuzukotoyuzuko
提出日時 2020-04-05 20:49:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 70,696 KB
最終ジャッジ日時 2024-07-04 03:01:30
合計ジャッジ時間 5,357 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
63,540 KB
testcase_01 AC 62 ms
67,000 KB
testcase_02 AC 52 ms
62,968 KB
testcase_03 AC 60 ms
66,024 KB
testcase_04 AC 78 ms
68,240 KB
testcase_05 AC 51 ms
63,112 KB
testcase_06 AC 60 ms
66,432 KB
testcase_07 AC 70 ms
68,468 KB
testcase_08 AC 91 ms
70,696 KB
testcase_09 AC 74 ms
68,452 KB
testcase_10 AC 74 ms
68,784 KB
testcase_11 AC 87 ms
68,400 KB
testcase_12 AC 36 ms
53,452 KB
testcase_13 AC 37 ms
53,220 KB
testcase_14 AC 37 ms
52,232 KB
testcase_15 AC 37 ms
52,244 KB
testcase_16 AC 36 ms
52,976 KB
testcase_17 AC 83 ms
68,404 KB
testcase_18 AC 73 ms
67,672 KB
testcase_19 AC 64 ms
66,420 KB
testcase_20 AC 73 ms
68,808 KB
testcase_21 AC 52 ms
65,508 KB
testcase_22 AC 48 ms
62,052 KB
testcase_23 AC 42 ms
59,700 KB
testcase_24 AC 46 ms
61,168 KB
testcase_25 AC 46 ms
60,968 KB
testcase_26 AC 44 ms
61,048 KB
testcase_27 AC 40 ms
58,548 KB
testcase_28 AC 46 ms
61,796 KB
testcase_29 AC 48 ms
61,076 KB
testcase_30 AC 47 ms
61,828 KB
testcase_31 AC 44 ms
59,864 KB
testcase_32 AC 46 ms
61,172 KB
testcase_33 AC 76 ms
69,240 KB
testcase_34 AC 75 ms
68,284 KB
testcase_35 AC 73 ms
69,484 KB
testcase_36 AC 62 ms
67,164 KB
testcase_37 AC 78 ms
69,068 KB
testcase_38 AC 58 ms
65,952 KB
testcase_39 AC 82 ms
70,016 KB
testcase_40 AC 85 ms
68,968 KB
testcase_41 AC 84 ms
68,824 KB
testcase_42 AC 82 ms
69,388 KB
testcase_43 AC 84 ms
68,972 KB
testcase_44 AC 59 ms
66,180 KB
testcase_45 AC 77 ms
68,896 KB
testcase_46 AC 54 ms
65,536 KB
testcase_47 AC 57 ms
66,284 KB
testcase_48 AC 67 ms
67,552 KB
testcase_49 AC 65 ms
65,976 KB
testcase_50 AC 71 ms
68,072 KB
testcase_51 AC 69 ms
67,240 KB
testcase_52 AC 68 ms
67,400 KB
testcase_53 AC 88 ms
69,608 KB
testcase_54 AC 69 ms
67,232 KB
testcase_55 AC 51 ms
63,296 KB
testcase_56 AC 78 ms
69,048 KB
testcase_57 AC 65 ms
67,572 KB
testcase_58 AC 36 ms
53,024 KB
testcase_59 AC 35 ms
52,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10**18

N = int(input())
S = input()
A = list(map(int, input().split()))
Q = int(input())
K = list(map(int, input().split()))

enemy = [0]

for i in range(N):
    if S[i] == 'E':
        enemy.append(enemy[-1] + 1)
    else:
        enemy.append(enemy[-1])

hp = [0]

for i in range(N):
    hp.append(hp[-1] + A[i])

min_hp = [INF for _ in range(N + 1)]

for i in range(N):
    for j in range(i + 1, N + 1):
        min_hp[enemy[j] - enemy[i]] = min(hp[j] - hp[i], min_hp[enemy[j] - enemy[i]])

for k in range(Q):
    res = 0
    for i in range(N + 1):
        if min_hp[i] <= K[k]:
            res = max(i, res)
    print(res)
0