結果

問題 No.1535 五七五
ユーザー karinohitokarinohito
提出日時 2021-06-06 18:07:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 1,748 ms
コンパイル使用メモリ 169,564 KB
実行使用メモリ 11,088 KB
最終ジャッジ日時 2024-05-02 12:18:00
合計ジャッジ時間 5,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 153 ms
11,008 KB
testcase_05 AC 228 ms
11,000 KB
testcase_06 AC 248 ms
10,968 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 153 ms
11,008 KB
testcase_19 AC 153 ms
11,004 KB
testcase_20 AC 152 ms
10,900 KB
testcase_21 AC 153 ms
10,992 KB
testcase_22 AC 153 ms
10,904 KB
testcase_23 AC 152 ms
11,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <atcoder/all>
#include <bits/stdc++.h>
//#include <windows.h>

//#include <time.h>
using namespace std;
//using namespace atcoder;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<ll>>;



int main() {
   ll N;
   ll A,B,C;
   cin>>N>>A>>B>>C;
   vll S(N+2);
   rep(i,N){
      string s;
      cin>>s;
      S[i]=s.size();
   }
   S[N]=1e8;
   S[N+1]=1e8;
   vll SN(N+3,0);
   rep(i,N+2){
      SN[i+1]=SN[i]+S[i];
   }
   ll an=0;
   rep(i,N){
      auto M=lower_bound(all(SN),SN[i]+A);
      if(*M!=SN[i]+A)continue;
      auto M2=lower_bound(all(SN),SN[i]+A+B);
      if(*M2!=SN[i]+A+B)continue;
      auto M3=lower_bound(all(SN),SN[i]+A+B+C);
      if(*M3!=SN[i]+A+B+C)continue;
      an++;
   }
   cout<<an<<endl;
}

0