- P119's solution
P119‘s Solution
- 2025-9-5 18:33:09 @
出题人题解。
#include<bits/stdc++.h>
using namespace std;
string str;
int main(){
cin>>str;
if(str.find("kkksc03")!=-1){
cout<<"T";
}else{
cout<<"F";
}
return 0;
}
出题人题解。
#include<bits/stdc++.h>
using namespace std;
string str;
int main(){
cin>>str;
if(str.find("kkksc03")!=-1){
cout<<"T";
}else{
cout<<"F";
}
return 0;
}
yangrenrui yrr