Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 100 点
問題文
英小文字からなる 12 個の文字列 S_1,S_2,\ldots,S_{12} があります。
S_i の長さが i であるような整数 i (1 \leq i \leq 12) がいくつあるか求めてください。
制約
- S_i は英小文字からなる長さ 1 以上 100 以下の文字列である。(1 \leq i \leq 12)
入力
入力は以下の形式で標準入力から与えられる。
S_1 S_2 \vdots S_{12}
出力
S_i の長さが i であるような整数 i (1 \leq i \leq 12) がいくつあるか出力せよ。
入力例 1
january february march april may june july august september october november december
出力例 1
1
S_i の長さが i であるような整数 i は 9 の 1 つのみです。よって、1
と出力します。
入力例 2
ve inrtfa npccxva djiq lmbkktngaovl mlfiv fmbvcmuxuwggfq qgmtwxmb jii ts bfxrvs eqvy
出力例 2
2
S_i の長さが i であるような整数 i は 4,8 の 2 つです。よって、2
と出力します。
Score : 100 points
Problem Statement
There are 12 strings S_1, S_2, \ldots, S_{12} consisting of lowercase English letters.
Find how many integers i (1 \leq i \leq 12) satisfy that the length of S_i is i.
Constraints
- Each S_i is a string of length between 1 and 100, inclusive, consisting of lowercase English letters. (1 \leq i \leq 12)
Input
The input is given from Standard Input in the following format:
S_1 S_2 \vdots S_{12}
Output
Print the number of integers i (1 \leq i \leq 12) such that the length of S_i is i.
Sample Input 1
january february march april may june july august september october november december
Sample Output 1
1
There is only one integer i such that the length of S_i is i: 9. Thus, print 1
.
Sample Input 2
ve inrtfa npccxva djiq lmbkktngaovl mlfiv fmbvcmuxuwggfq qgmtwxmb jii ts bfxrvs eqvy
Sample Output 2
2
There are two integers i such that the length of S_i is i: 4 and 8. Thus, print 2
.