Submission #1698678


Source Code Expand

#include<iostream>
#include<iomanip>
#include<math.h>
#include<vector>
#include<algorithm>
#include<set>
#include<map>
#include<queue>
#include<stack>
#include<string>
#include<time.h>
#define INF 1000000000ll
#define MOD 1000000007ll
#define EPS 1e-10
#define REP(i,m) for(long long i=0; i<m; ++i)
#define FOR(i,n,m) for(long long i=n; i<m; ++i)
#define DUMP(n,a) for(long long dump=0; dump<n; ++dump) { cout<<a[dump]; if(dump!=n-1) cout<<" "; else cout<<endl; }
#define ALL(v) v.begin(),v.end()
#define pb push_back
using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;
typedef long double ld;

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	string t;
	cin>>t;
	ll ret=0;
	ll buf=0;
	REP(i,t.size()) {
		if(i%2==0&&(t[i]=='2'||t[i]=='?')) buf++;
		else if(i%2==1&&(t[i]=='5'||t[i]=='?')&&buf>0) buf++;
		else {
			ret=max(ret,buf-(int)(buf%2==1));
			buf=0;
		}
	}
	ret=max(ret,buf-(int)(buf%2==1));
	buf=0;
	REP(i,t.size()) {
		if(i%2==1&&(t[i]=='2'||t[i]=='?')) buf++;
		else if(i%2==0&&(t[i]=='5'||t[i]=='?')&&buf>0) buf++;
		else {
			ret=max(ret,buf-(int)(buf%2==1));
			buf=0;
		}
	}
	ret=max(ret,buf-(int)(buf%2==1));
	buf=0;
	cout<<ret<<endl;
}

Submission Info

Submission Time
Task B - ニコニコレベル
User gazelle
Language C++14 (GCC 5.4.1)
Score 300
Code Size 1231 Byte
Status AC
Exec Time 4 ms
Memory 512 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 5
AC × 22
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt, sample_05.txt
All sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt, sample_05.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, large_01.txt, large_02.txt, large_03.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt, sample_05.txt
Case Name Status Exec Time Memory
hand_01.txt AC 1 ms 256 KB
hand_02.txt AC 1 ms 256 KB
hand_03.txt AC 1 ms 256 KB
hand_04.txt AC 1 ms 256 KB
hand_05.txt AC 2 ms 512 KB
large_01.txt AC 3 ms 512 KB
large_02.txt AC 3 ms 512 KB
large_03.txt AC 3 ms 512 KB
random_01.txt AC 4 ms 512 KB
random_02.txt AC 3 ms 512 KB
random_03.txt AC 3 ms 512 KB
random_04.txt AC 3 ms 512 KB
sample_01.txt AC 1 ms 256 KB
sample_02.txt AC 1 ms 256 KB
sample_03.txt AC 1 ms 256 KB
sample_04.txt AC 1 ms 256 KB
sample_05.txt AC 1 ms 256 KB