Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
100659 | 周宸宇 | 如何得到"hello" | C++ | Wrong Answer | 1 MS | 272 KB | 376 | 2024-12-09 20:20:29 |
#include<iostream> #include<cstring> using namespace std; int main(){ char a[1501],b[6]={'h','e','l','l','o'}; int d=0; cin>>a; for(int j=0;a[j]=='\0';j++){ if(a[j]==b[d]){ d++; if(d==5){ cout<<"YES"; }else{ cout<<"NO"; } } } return 0; }
------Input------
jkwgburltxdezgcdhduwcpqoadrwnqljfn
------Answer-----
NO
------Your output-----