Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
105491 | 杜春雨 | 如何得到"hello" | C++ | Wrong Answer | 0 MS | 276 KB | 509 | 2025-01-13 17:08:35 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ char a[1000],b[1500]={'h','e','l','l','o'}; int v=0; cin>>a; for(int i=0;i<strlen(a);i++){ if(a[i]==b[v]){ v++; } } if(v==5){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }
------Input------
eqpsksajhnqosetolswlcvwtijmlpkiuatolushysuostcfkwpjlibqfyvmacwycyrjnmfkoydfrxpabrbydaaalavpqcnkwecpxqchngdaoiastywcxwzlnghtcungpjttchrxnuehydpllsyurslhvanjoorijvgmpvwxkocjluhikovckbkyjndrgqcplzgvhpltdnmssdgrusbrkramfbajeqdcgnerdypyxxyxfdmjjrnngsbvlaeratyxlpzatvaprhsiqaomfeujfnjzxewwksikprxjxhplirwdlbxpamnvszecisemickfolbeochkgcgoeayzyzvqspesjuefacifsjqsoilyhunntutdohtjqtdunujkcxdrfarwlosbgravnlhuyjxukpaarivqzfbnlapnrksnqvsmjipwdzbjzihmppzoelfninyakehudvkqjddcltckpwavofuhgolboubcmrqlfpvizhwanihxt
------Answer-----
YES
------Your output-----
NO