結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー yansi819yansi819
提出日時 2024-05-12 09:38:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 74,732 KB
最終ジャッジ日時 2024-12-20 08:59:52
合計ジャッジ時間 7,088 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
67,620 KB
testcase_01 AC 71 ms
67,076 KB
testcase_02 AC 53 ms
61,592 KB
testcase_03 AC 70 ms
67,916 KB
testcase_04 AC 78 ms
69,936 KB
testcase_05 AC 56 ms
64,048 KB
testcase_06 AC 99 ms
66,796 KB
testcase_07 AC 89 ms
69,716 KB
testcase_08 AC 121 ms
73,276 KB
testcase_09 AC 125 ms
73,032 KB
testcase_10 AC 106 ms
73,256 KB
testcase_11 AC 132 ms
70,492 KB
testcase_12 AC 40 ms
52,332 KB
testcase_13 AC 40 ms
52,620 KB
testcase_14 AC 39 ms
52,824 KB
testcase_15 AC 38 ms
52,632 KB
testcase_16 AC 39 ms
52,940 KB
testcase_17 AC 74 ms
65,264 KB
testcase_18 AC 80 ms
69,464 KB
testcase_19 AC 112 ms
68,892 KB
testcase_20 AC 95 ms
72,880 KB
testcase_21 AC 64 ms
67,076 KB
testcase_22 AC 51 ms
61,960 KB
testcase_23 AC 50 ms
63,180 KB
testcase_24 AC 53 ms
63,004 KB
testcase_25 AC 55 ms
62,992 KB
testcase_26 AC 46 ms
59,332 KB
testcase_27 AC 39 ms
53,440 KB
testcase_28 AC 52 ms
62,236 KB
testcase_29 AC 55 ms
64,772 KB
testcase_30 AC 53 ms
62,756 KB
testcase_31 AC 50 ms
60,836 KB
testcase_32 AC 47 ms
61,044 KB
testcase_33 AC 95 ms
72,484 KB
testcase_34 AC 117 ms
73,736 KB
testcase_35 AC 110 ms
71,812 KB
testcase_36 AC 79 ms
72,392 KB
testcase_37 AC 93 ms
69,920 KB
testcase_38 AC 89 ms
68,164 KB
testcase_39 AC 116 ms
73,048 KB
testcase_40 AC 152 ms
74,732 KB
testcase_41 AC 151 ms
73,996 KB
testcase_42 AC 128 ms
69,604 KB
testcase_43 AC 125 ms
72,812 KB
testcase_44 AC 79 ms
69,076 KB
testcase_45 AC 133 ms
72,896 KB
testcase_46 AC 66 ms
65,672 KB
testcase_47 AC 94 ms
66,864 KB
testcase_48 AC 92 ms
71,472 KB
testcase_49 AC 81 ms
68,372 KB
testcase_50 AC 92 ms
69,800 KB
testcase_51 AC 113 ms
71,132 KB
testcase_52 AC 110 ms
71,724 KB
testcase_53 AC 122 ms
74,012 KB
testcase_54 AC 79 ms
69,612 KB
testcase_55 AC 57 ms
65,768 KB
testcase_56 AC 115 ms
68,536 KB
testcase_57 AC 93 ms
71,944 KB
testcase_58 AC 39 ms
52,800 KB
testcase_59 AC 38 ms
52,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [0] + [s == "E" for s in input()]
for i in range(1, N + 1):
    S[i] += S[i - 1]
A = [0] + list(map(int, input().split()))
for i in range(1, N + 1):
    A[i] += A[i - 1]
Q = int(input())
K = list(map(int, input().split()))

for k in K:
    l = 0
    ans = 0
    for r in range(N + 1):
        while A[r] - A[l] > k:
            l += 1
        ans = max(ans, S[r] - S[l])
    print(ans)
0