Submission #1868910


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
int main(){
  long long int n,x,a[100010];
  cin >> n >> x;
  for(long long int i=0;i<n;i++){
    cin >> a[i];
  }
  long long cnt=0;
  for(long long i=1;i<n;){
    if(a[i-1]+a[i]>x){
      a[i]--;
      //cout << "a[" << i+1 << "]は" << a[i+1] << endl;
      cnt++;
    }else if(a[i-1]+a[i]<=x){
      i++;
    }
  }
  cout << cnt << endl;
  return 0;
}

Submission Info

Submission Time
Task C - Boxes and Candies
User Impulse
Language C++14 (GCC 5.4.1)
Score 0
Code Size 420 Byte
Status TLE
Exec Time 2103 ms
Memory 1024 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 4
AC × 9
TLE × 11
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt
Case Name Status Exec Time Memory
0_00.txt AC 8 ms 764 KB
0_01.txt AC 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
0_03.txt AC 1 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt TLE 2103 ms 256 KB
1_03.txt AC 1940 ms 256 KB
1_04.txt AC 17 ms 1024 KB
1_05.txt AC 17 ms 1024 KB
1_06.txt TLE 2103 ms 1024 KB
1_07.txt TLE 2103 ms 1024 KB
1_08.txt TLE 2103 ms 1024 KB
1_09.txt TLE 2103 ms 1024 KB
1_10.txt TLE 2103 ms 1024 KB
1_11.txt TLE 2103 ms 1024 KB
1_12.txt TLE 2103 ms 1024 KB
1_13.txt TLE 2103 ms 1024 KB
1_14.txt TLE 2103 ms 1024 KB
1_15.txt TLE 2103 ms 1024 KB