310407: CF1829A. Love Story

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:10 Solved:0

Description

A. Love Storytime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output

Timur loves codeforces. That's why he has a string $s$ having length $10$ made containing only lowercase Latin letters. Timur wants to know how many indices string $s$ differs from the string "codeforces".

For example string $s =$ "coolforsez" differs from "codeforces" in $4$ indices, shown in bold.

Help Timur by finding the number of indices where string $s$ differs from "codeforces".

Note that you can't reorder the characters in the string $s$.

Input

The first line contains a single integer $t$ ($1 \leq t \leq 1000$) — the number of test cases.

Each test case is one line and contains the string $s$, consisting of exactly $10$ lowercase Latin characters.

Output

For each test case, output a single integer — the number of indices where string $s$ differs.

ExampleInput
5
coolforsez
cadafurcie
codeforces
paiuforces
forcescode
Output
4
5
0
4
9

Input

题意翻译

# 题意简述 有 $t$ 组数据,每组数据会给出一个长度为 $10$ 的只含小写拉丁字母的字符串 $S_i$。 对于每组数据,请你求出这个字符串 $S_i$ 中与字符串 $K=\text{codeforces}$ 中有多少个字符不同。 例如,字符串 $O=\text{coolforsez}$ 与字符串 $K$ 有 $4$ 个字符不同,不同的字符是:$O_3,O_4,O_8,O_{10}$。 Translate by @[tianbiandeshenghuo11](/user/752485)

Output

题目大意:
题目名为 "爱的故事",是一个编程问题。给定一个长度为10的字符串s,只包含小写拉丁字母。要求计算字符串s与字符串"codeforces"在多少个位置上不同。不能重新排序字符串s中的字符。

输入输出数据格式:
输入:
- 第一行是一个整数t(1 ≤ t ≤ 1000),表示测试用例的数量。
- 每个测试用例占一行,包含一个恰好10个小写拉丁字母组成的字符串s。

输出:
- 对于每个测试用例,输出一个整数,表示字符串s与"codeforces"不同的位置的数目。

例如:
输入:
```
5
coolforsez
cadafurcie
codeforces
paiuforces
forcescode
```
输出:
```
4
5
0
4
9
```

请注意,这是一个翻译和大意总结,并没有提供完整的代码或详细的解题步骤。题目大意: 题目名为 "爱的故事",是一个编程问题。给定一个长度为10的字符串s,只包含小写拉丁字母。要求计算字符串s与字符串"codeforces"在多少个位置上不同。不能重新排序字符串s中的字符。 输入输出数据格式: 输入: - 第一行是一个整数t(1 ≤ t ≤ 1000),表示测试用例的数量。 - 每个测试用例占一行,包含一个恰好10个小写拉丁字母组成的字符串s。 输出: - 对于每个测试用例,输出一个整数,表示字符串s与"codeforces"不同的位置的数目。 例如: 输入: ``` 5 coolforsez cadafurcie codeforces paiuforces forcescode ``` 输出: ``` 4 5 0 4 9 ``` 请注意,这是一个翻译和大意总结,并没有提供完整的代码或详细的解题步骤。

加入题单

上一题 下一题 算法标签: