結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー kawamochikawamochi
提出日時 2019-11-29 22:18:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 775 bytes
コンパイル時間 1,679 ms
コンパイル使用メモリ 169,248 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-01 00:33:15
合計ジャッジ時間 9,451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 2 ms
6,940 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 2 ms
6,944 KB
testcase_13 RE -
testcase_14 AC 2 ms
6,940 KB
testcase_15 RE -
testcase_16 AC 2 ms
6,940 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 3 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 AC 2 ms
6,940 KB
testcase_59 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef pair<int, int> P;
typedef long long ll;
int main(){
    int n;
    cin >> n;
    string s;
    cin >> s;
    vector<ll> a(n);
    rep(i,n){
        cin >> a[i];
    }
    int q;
    cin >> q;
    rep(query,q){
        ll k;
        cin >> k;
        ll wa = 0;
        int ans = 0;
        int r = 0;
        int cnt = 0;
        rep(l,n){
            for(;wa+a[r]<=k;r++){
                wa+=a[r];
                if(s[r]=='E'){
                    cnt++;
                }
            }
            ans = max(ans,cnt);
            wa-=a[l];
            if(s[l]=='E'){
                cnt--;
            }
        }
        cout << ans << endl;
    }
    return 0;
}
0