CF520A.Pangram
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices.
You are given a string consisting of lowercase and uppercase Latin letters. Check whether this string is a pangram. We say that the string contains a letter of the Latin alphabet if this letter occurs in the string in uppercase or lowercase.
输入格式
The first line contains a single integer n ( 1<=n<=100 ) — the number of characters in the string.
The second line contains the string. The string consists only of uppercase and lowercase Latin letters.
输出格式
Output "YES", if the string is a pangram and "NO" otherwise.
输入输出样例
输入#1
12 toosmallword
输出#1
NO
输入#2
35 TheQuickBrownFoxJumpsOverTheLazyDog
输出#2
YES