NC15517. 真真假假
描述
乾为天,刚健中正,自强不息;坤为地,柔顺伸展,厚载万物。
乾卦:天行健,君子以自强不息。困龙得水好运交,不由喜气上眉梢,一切谋望皆如意,向后时运渐渐高。
坤卦:地势坤,君子以厚德载物。肥羊失群入山岗,饿虎逢之把口张,适口充肠心欢喜,卦若占之大吉昌。
输入描述
第一行一个正整数 ,表示询问个数。接下去 行,每行一个仅由小写字母构成的字符串 ,表示一个询问。
输出描述
输出共 行,每行一个字符串 表示这个头文件存在,或 表示这个头文件不存在。
示例1
输入:
3 cstdio splay fstream
输出:
Qian Kun Qian
Python3 解法, 执行用时: 43ms, 内存消耗: 4540K, 提交时间: 2023-08-13 14:06:24
a = 'algorithm, bitset, cctype, cerrno, clocale, cmath, complex, cstdio, cstdlib, cstring, ctime, deque, exception, fstream, functional, limits, list, map, iomanip, ios, iosfwd, iostream, istream, ostream, queue, set, sstream, stack, stdexcept, streambuf, string, utility, vector, cwchar, cwctype' n = int(input()) for i in range(n): s = input() print('Qian' if s in a else 'Kun')