ZOJ3775-?(>_o)!

来源:互联网 发布:江南七怪 知乎 编辑:程序博客网 时间:2024/06/04 19:46

?(>_o)!

Time Limit: 2 Seconds      Memory Limit: 65536 KB

?(>_o)! is a pseudo-object-oriented programming language. It implements the following commands:

CommandDescription?Check whether the character '?' is in the program's source code. If '?' does not exist in the program's source, the hardware will catch fire or explode.(It tries to match ')', although mismatch of brackets does not matter at all.>Increase the internal accumulator._Print the program's source code.oInstantiate an object of a new sub class of the generic super class. Due to the best principles of object hiding, this object cannot be accessed in any way.)Just matches '('. It's for patient with obsessive-compulsive disorder. However, mismatch of brackets does not matter at all.!Print "Hello, world!".Other charactersBe treated as comments rather than instruction.

However, it's only another joke programming language. There is even no way to access the accumulator. But it's one of easiest to finish a "Hello world" program or a quine program. A quine is a computer program which takes no input and produces a copy of its own source code as its only output. Your task is to judge whether a ?(>_o)! program is a quine.

Input

There are multiple test cases. The first line of input is an integer T indicates the number of test cases. For each test case:

There is one line of string represents the source code of a ?(>_o)! program. The program contains no more than 256 characters. The ASCII value of each character is within [32, 126].

Output

For each test case, output "Yes" if it is a quine. Otherwise, output "No".

Sample Input

4Hello, world!source_codesource__code?(>_o)!

Sample Output

YesYesNoNo

Hint

The output of the four sample programs are {"Hello, world!", "source_code", "source__codesource__code", "?(>_o)!Hello, world!"} respectively. Therefore the first two programs are quines, and the last two are not.

Luckily, there is a '?' in the fourth program, so the hardware will not catch fire or explode during running the fourth program.


Author: ZHOU, Yuchen
Source: The 14th Zhejiang University Programming Contest


题意:有一个下划线表示把输入输出一次,感叹号表示输出"Hello, world!"


#include <iostream>#include <cstdio>#include <cstring>#include <string>#include <algorithm>#include <cmath>#include <map>#include <set>#include <stack>#include <queue>#include <vector>#include <bitset>using namespace std;int main(){    int n;    cin>>n;    getchar();    while(n--)    {        string s;        getline(cin,s);        string output="";        auto it=begin(s);        for(;it!=end(s);it++)        {            if(*it=='_')output+=s;            else if(*it=='!')output+="Hello, world!";        }        printf("%s",!s.compare(output)?"Yes\n":"No\n");    }    return 0;}

0 0
原创粉丝点击