记录编号 588467 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 字符战车 最终得分 100
用户昵称 Gravatardustsans 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2024-05-30 21:23:01 内存使用 0.00 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int main(){
    freopen("chariot.in","r",stdin);
    freopen("chariot.out","w",stdout);
    string s,a,b;
    int f,g,t;
    getline(cin,s);
    getline(cin,a);
    getline(cin,b);
    t=a.length();
    f=s.find(a);
    f=f+t;
    g=s.rfind(b);
    if((g-f)<=0){
        cout<<"IMPOSSIBLE"<<endl;
    }else{
        int h=g-f;
        cout<<h<<endl;
    }
    return 0;
}