CF1722A.Spell Check

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Timur likes his name. As a spelling of his name, he allows any permutation of the letters of the name. For example, the following strings are valid spellings of his name: Timur, miurT, Trumi, mriTu. Note that the correct spelling must have uppercased T and lowercased other letters.

Today he wrote string ss of length nn consisting only of uppercase or lowercase Latin letters. He asks you to check if ss is the correct spelling of his name.

输入格式

The first line of the input contains an integer tt ( 1t1031 \leq t \leq 10^3 ) — the number of test cases.

The first line of each test case contains an integer nn (1n10)(1 \leq n \leq 10) — the length of string ss .

The second line of each test case contains a string ss consisting of only uppercase or lowercase Latin characters.

输出格式

For each test case, output "YES" (without quotes) if ss satisfies the condition, and "NO" (without quotes) otherwise.

You can output the answer in any case (for example, the strings "yEs", "yes", "Yes" and "YES" will be recognized as a positive answer).

输入输出样例

  • 输入#1

    10
    5
    Timur
    5
    miurT
    5
    Trumi
    5
    mriTu
    5
    timur
    4
    Timr
    6
    Timuur
    10
    codeforces
    10
    TimurTimur
    5
    TIMUR

    输出#1

    YES
    YES
    YES
    YES
    NO
    NO
    NO
    NO
    NO
    NO
首页