A669.子串判定

普及-

官方

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

给出A,B,C三个字符串,判断C是否是AB按顺序拼接在一起的子串。对于字符串"ABCDEFG","ABC"、"DEF"、"ABCDEFG"都是他的子串,而"ABD"、"FGK"等不适

输入格式

一行三个字符串,分别表示字符串A、B、C

输出格式

若是子串输出C is substring of A and B
否则输出C is not substring of A and B

输入输出样例

  • 输入#1

    goodgoodstudy daydayup studyday

    输出#1

    studyday is substring of goodgoodstudy and daydayup
  • 输入#2

    goodgoodstudy daydayup play

    输出#2

    play is not substring of goodgoodstudy and daydayup

说明/提示

A,B,C的长度<=100,字符串中不含空格

首页