3151: 统计 vector 中长度大于 3 的字符串个数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:6 Solved:6

Description

输入 n 个字符串存入 vector,统计长度 > 3的字符串数量并输出。

Input

n + n 个字符串

Output

一个整数(符合条件的数量)

Sample Input Copy

4
hi
apple
dog
program

Sample Output Copy

2