首页 > 试题广场 >

Kuchiguse (20)

[编程题]Kuchiguse (20)
  • 热度指数:6679 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 64M,其他语言128M
  • 算法知识视频讲解
The Japanese language is notorious for its sentence ending particles. Personal preference of such particles can be considered as a reflection of the speaker's personality. Such a preference is called "Kuchiguse" and is often exaggerated artistically in Anime and Manga. For example, the artificial sentence ending particle "nyan~" is often used as a stereotype for characters with a cat-like personality:
Itai nyan~ (It hurts, nyan~)
Ninjin wa iyada nyan~ (I hate carrots, nyan~)

Now given a few lines spoken by the same character, can you find her Kuchiguse?

输入描述:
Each input file contains one test case.  For each case, the first line is an integer N (2<=N<=100). Following are N file lines of 0~256 (inclusive) characters in length, each representing a character's spoken line. The spoken lines are case sensitive.


输出描述:
For each test case, print in one line the kuchiguse of the character, i.e., the longest common suffix of all N lines. If there is no such suffix, write "nai".
示例1

输入

3
Itai nyan~
Ninjin wa iyadanyan~
uhhh nyan~

输出

nyan~
头像 懒散之魂
发表于 2021-09-23 13:25:45
更多PAT甲级题解--acking-you.github.io 题目 OJ平台 题目大意 题目大意很简单,就是给出很多句话,要你分析,最长的公共后缀。 这个地方难在输入的处理,注意输入如果用的 getline() 接收的一行,则前面一般不能有别的输入方式,否则会起冲突,导致 getline() 展开全文