結果

問題 No.1535 五七五
ユーザー Nzt3Nzt3
提出日時 2021-06-06 18:24:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 1,739 ms
コンパイル使用メモリ 171,544 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-05-02 12:50:28
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 60 ms
7,168 KB
testcase_05 AC 155 ms
7,168 KB
testcase_06 AC 156 ms
7,168 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 117 ms
7,168 KB
testcase_19 AC 115 ms
7,296 KB
testcase_20 AC 118 ms
7,296 KB
testcase_21 AC 118 ms
7,168 KB
testcase_22 AC 117 ms
7,168 KB
testcase_23 AC 117 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin>>N;
  int A,B,C;
  cin>>A>>B>>C;
  vector<int>T(N);
  string S;
  for(int i=0;i<N;i++){
    cin>>S;
    T[i]=S.size();
  }
  T.push_back(10000000);
  T.push_back(10000000);
  T.push_back(10000000);
  int ans=0;
  for(int i=0,cnt1=T[0],cnt2=0,cnt3=0,r1=0,r2=0,r3=0;i<N;i++){
    while(cnt1<A){
      cnt1+=T[++r1];
      cnt2-=T[r1];
    }
    while(cnt2<B){
      cnt2+=T[++r2];
      cnt3-=T[r2];
    }
    while(cnt3<C){
      cnt3+=T[++r3];
    }
    if(cnt1==A&&cnt2==B&&cnt3==C)ans++;
    cnt1-=T[i];
  }
  cout<<ans<<endl;
}
0