1. 程式人生 > >Codeforces Round #513 A. Phone Numbers(水題)

Codeforces Round #513 A. Phone Numbers(水題)

       題意是輸入n個數字,然後問這n個數字最多能組成多少個手機號,手機號是11位的,而且必須要8開頭。

       思路很簡單,求出n/11和8的個數的最小值就好了...

AC程式碼:

#include <bits/stdc++.h>
using namespace std;
int main()
{
	int n;
	string str;
	cin>>n;
	cin>>str;
	int len = str.length();
	int ans = 0;
	for(int i=0;i<len;i++){
		if(str[i] == '8'){
			ans++;
		}
	}
	int x = n / 11;
	cout<<min(x,ans)<<endl;
	return 0;
}