結果

提出番号 783
提出者 Pulmn
言語 C++
提出日時 2017-08-01 14:36:20
問題名 (27)575!575じゃん!575!
結果 AC
点数 100%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 65ms 7984KB
2 AC 100% 50ms 7776KB
3 AC 100% 17ms 7664KB
4 AC 100% 16ms 7680KB
5 AC 100% 18ms 8336KB
6 AC 100% 18ms 8320KB
7 AC 100% 36ms 7408KB
8 AC 100% 38ms 8320KB
9 AC 100% 40ms 8000KB
10 AC 100% 29ms 7776KB
11 AC 100% 2ms 8320KB
12 AC 100% 26ms 8336KB
13 AC 100% 29ms 8304KB
14 AC 100% 27ms 8320KB
15 AC 100% 33ms 7776KB
16 AC 100% 16ms 7968KB
17 AC 100% 45ms 7968KB
18 AC 100% 75ms 7520KB
19 AC 100% 10ms 7968KB
20 AC 100% 24ms 7776KB
21 AC 100% 2ms 8000KB
22 AC 100% 2ms 8336KB
23 AC 100% 2ms 7952KB

ソースコード

#include <iostream>
#include <fstream>
#include <cassert>
#include <typeinfo>
#include <vector>
#include <stack>
#include <cmath>
#include <set>
#include <map>
#include <string>
#include <algorithm>
#include <cstdio>
#include <queue>
#include <iomanip>
#include <cctype>
#include <random>
#include <complex>
#define syosu(x) fixed<<setprecision(x)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> P;
typedef pair<double,double> pdd;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<double> vd;
typedef vector<vd> vvd;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<char> vc;
typedef vector<vc> vvc;
typedef vector<string> vs;
typedef vector<bool> vb;
typedef vector<vb> vvb;
typedef vector<P> vp;
typedef vector<vp> vvp;
typedef vector<pll> vpll;
typedef pair<P,int> pip;
typedef vector<pip> vip;
const int inf=1<<29;
const ll INF=1ll<<60;
const double pi=acos(-1);
const double eps=1e-8;
const ll mod=1e9+7;
const int dx[4]={0,1,0,-1},dy[4]={1,0,-1,0};

int n;

int main(){
	cin>>n;
	ll x=0,y=0;
	for(int i=0;i<n;i++){
		string s;
		cin>>s;
		if(s.size()==5) x++;
		else y++;
	}
	if(x<2||!y) cout<<0<<endl;
	else cout<<x*(x-1)*y<<endl;
}