311231: CF1952H. Palindrome

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

Description

H. Palindrometime limit per test3 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

A palindrome is a string that reads the same in both directions, for example z, uwu, or moom.

Input

The first line contains an integer $t$ ($1 \leq t \leq 100$) — the number of testcases.

The following $t$ lines each contain a string of length at most $100$ consisting of lowercase English letters.

Output

For each test case, output "YES" or "NO", denoting the answer.

ExamplesInput
8
ac
tle
radar
racecar
php
atcoder
codeforces
steam
Output
NO
NO
YES
YES
NO
NO
YES
YES
Input
2
a
z
Output
NO
YES

Output

题目大意:
回文串是一个从两个方向读取都相同的字符串,例如 z、uwu 或 moom。

输入数据格式:
第一行包含一个整数 t (1 ≤ t ≤ 100) —— 测试用例的数量。
接下来的 t 行,每行包含一个长度不超过 100 的由小写英文字母组成的字符串。

输出数据格式:
对于每个测试用例,输出 "YES" 或 "NO",表示答案。

示例:
输入:
8
ac
tle
radar
racecar
php
atcoder
codeforces
steam

输出:
NO
NO
YES
YES
NO
NO
YES
YES

输入:
2
a
z

输出:
NO
YES题目大意: 回文串是一个从两个方向读取都相同的字符串,例如 z、uwu 或 moom。 输入数据格式: 第一行包含一个整数 t (1 ≤ t ≤ 100) —— 测试用例的数量。 接下来的 t 行,每行包含一个长度不超过 100 的由小写英文字母组成的字符串。 输出数据格式: 对于每个测试用例,输出 "YES" 或 "NO",表示答案。 示例: 输入: 8 ac tle radar racecar php atcoder codeforces steam 输出: NO NO YES YES NO NO YES YES 输入: 2 a z 输出: NO YES

加入题单

上一题 下一题 算法标签: