Problem D: ⽂本分类P4

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:6 Solved:6

Description

“分类” 是⼈⼯智能中很重要的一项任务,例如区分视频中的一帧图像是否存在异常事件、辨别图片中是否有待检索的⽬标、划分音频中词语的分界位置等。
虽然属于“人工智能”的范畴,但分类问题也可以简单理解成是一个计算机函数f,它输入一系列数据(例如代表图片颜色的二维数组、代表文本的字符串等),f(x)返回0或1,其中1则代表x具有某种特征,属于这一分类。
今天,大家要挑战一项文本的分类任务:识别一个单词序列是由英文书写的,还是由汉语拼音书写的。以下分别是两段文字,是用汉语拼音和英文书写的,你能正确地分类吗?
1. While a number of definitions of artificial intelligence (AI) have surfaced over the last few decades, John McCarthy offers the following definition in this 2004 paper, " It is the science and engineering of making intelligent machines,
especially intelligent computer programs. It is related to the similar task of using computers to understand human intelligence, but AI does not have to confine itself to methods that are biologically observable."
2. Ren gong zhi neng shi yan jiu、kai fa yong yu mo ni、yan shen he kuo zhan ren de zhi neng de li lun、fang fa ji ying yong xi tong de yi men xin de ji shu ke xue.

Input

输入数据的第一行是你需要分类文本的任务数量T。
接下来T行,每行描述了一个文本分类任务,首先是整数n表示单词的个数,接下来n个空格分隔的、仅由小写字母a-z组成的字符串代表了一段待分类的文本。输入保证每个单词(对中文来说是每个字)之间都有一个空格。

Output

为每个分类任务输出一行,如果待分类的文本是拼音书写的,输出“Pinyin”,如是英文书写的,输出“English”(输出不包含引号,注意 “Pinyin”和“English”的大小写)。

HINT

样例输入 1
2
14 zhe ge ti mu qi shi bi ni xiang xiang de yao jian dan
6 this problem has a simple solution
样例输出 1
Pinyin
English
数据规模
对于100%的数据,满足t<=10,1000<=n<=10000,并且都来自真实、易于人类阅读的文本。