Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
47046 . 【模拟赛3】JF 和 HJJ 是什么关系 C++ 解答错误 0 0 MS 240 KB 390 2022-03-19 10:57:27

Tests(0/7):


#include<bits/stdc++.h> using namespace std; int main() { string s,a; int c; string::size_type p; while(cin>>c>>a>>s) { int n=s.size(); for(int i=0; i<n;) { p=s.find(a,i); if(p!=s.npos) { printf("%d\n",p); i=p+1; } else { cout<<endl; break; } } } return 0; }


测评信息: