結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー toyuzukotoyuzuko
提出日時 2020-04-05 20:46:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 629 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 69,472 KB
最終ジャッジ日時 2024-07-04 02:52:39
合計ジャッジ時間 5,556 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
63,832 KB
testcase_01 AC 62 ms
66,904 KB
testcase_02 AC 52 ms
62,940 KB
testcase_03 AC 55 ms
65,484 KB
testcase_04 AC 72 ms
68,772 KB
testcase_05 AC 50 ms
64,176 KB
testcase_06 AC 59 ms
67,168 KB
testcase_07 AC 68 ms
68,864 KB
testcase_08 AC 93 ms
69,432 KB
testcase_09 AC 73 ms
68,472 KB
testcase_10 AC 73 ms
68,904 KB
testcase_11 AC 86 ms
68,596 KB
testcase_12 AC 36 ms
52,248 KB
testcase_13 AC 37 ms
52,492 KB
testcase_14 AC 36 ms
52,264 KB
testcase_15 WA -
testcase_16 AC 41 ms
52,544 KB
testcase_17 WA -
testcase_18 AC 77 ms
68,224 KB
testcase_19 AC 65 ms
67,084 KB
testcase_20 AC 74 ms
68,892 KB
testcase_21 AC 54 ms
65,044 KB
testcase_22 AC 50 ms
62,004 KB
testcase_23 AC 44 ms
60,252 KB
testcase_24 AC 47 ms
61,620 KB
testcase_25 AC 47 ms
61,948 KB
testcase_26 AC 45 ms
61,100 KB
testcase_27 AC 40 ms
59,120 KB
testcase_28 AC 50 ms
63,392 KB
testcase_29 AC 48 ms
61,904 KB
testcase_30 AC 46 ms
61,688 KB
testcase_31 AC 44 ms
60,328 KB
testcase_32 AC 45 ms
61,160 KB
testcase_33 AC 76 ms
69,052 KB
testcase_34 AC 77 ms
69,404 KB
testcase_35 AC 74 ms
69,244 KB
testcase_36 AC 63 ms
68,188 KB
testcase_37 AC 80 ms
68,976 KB
testcase_38 AC 60 ms
65,608 KB
testcase_39 AC 82 ms
69,312 KB
testcase_40 AC 84 ms
69,432 KB
testcase_41 AC 86 ms
68,572 KB
testcase_42 AC 78 ms
69,168 KB
testcase_43 AC 83 ms
68,576 KB
testcase_44 AC 60 ms
67,576 KB
testcase_45 AC 76 ms
68,900 KB
testcase_46 AC 57 ms
65,680 KB
testcase_47 AC 61 ms
66,420 KB
testcase_48 AC 68 ms
69,200 KB
testcase_49 AC 61 ms
66,300 KB
testcase_50 AC 75 ms
68,604 KB
testcase_51 AC 70 ms
68,428 KB
testcase_52 AC 67 ms
68,212 KB
testcase_53 AC 88 ms
69,008 KB
testcase_54 AC 70 ms
69,360 KB
testcase_55 AC 51 ms
63,412 KB
testcase_56 AC 80 ms
69,472 KB
testcase_57 AC 68 ms
67,804 KB
testcase_58 AC 36 ms
52,096 KB
testcase_59 AC 36 ms
53,012 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):
        if min_hp[i] <= K[k]:
            res = max(i, res)
    print(res)
0