标签:tps target names ott gic ons which desc pen
Jessie has a magic mirror.
Every morning she will ask the mirror: ‘Mirror mirror tell me, who is the most beautiful girl in the world?‘ If the mirror says her name, she will praise the mirror: ‘Good guy!‘, but if the mirror says the name of another person, she will assail the mirror: ‘Dare you say that again?‘
Today Jessie asks the mirror the same question above, and you are given a series of mirror‘s answers. For each answer, please output Jessie‘s response. You can assume that the uppercase or lowercase letters appearing anywhere in the name will have no influence on the answer. For example, ‘Jessie‘ and ‘jessie‘ represent the same person.
The first line contains an integer T(1 \le T \le 100)T(1≤T≤100), which is the number of test cases.
Each test case contains one line with a single-word name, which contains only English letters. The length of each name is no more than 1515.
For each test case, output one line containing the answer.
2 Jessie Justin
Good guy! Dare you say that again?
签到题:
#include<bits/stdc++.h> using namespace std; #define mem(a,b) memset(a,b,sizeof a) #define eps 1e-8 #define PI acos(-1.0) typedef long long LL; typedef pair<int,int> P; const int INF=0x3f3f3f3f; int T; string s; int main() { scanf("%d",&T); while(T--)//Jessie { cin>>s; int len=s.length(); if(len==6) { for(int i=0;i<6;i++) if(s[i]>=‘A‘&&s[i]<=‘Z‘) s[i]=s[i]+32; if(s=="jessie") puts("Good guy!"); else puts("Dare you say that again?"); } else puts("Dare you say that again?"); } return 0; }
2018ACM/ICPC 焦作网络预选赛-A Magic Mirror
标签:tps target names ott gic ons which desc pen
原文地址:https://www.cnblogs.com/songorz/p/9651862.html