| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 156851 | 杜禹轩 | 字符串长度判断 | C++ | Accepted | 1 MS | 280 KB | 254 | 2026-07-11 11:56:31 |
#include<bits/stdc++.h> using namespace std; int main() { int s1=0,s2=0; string a,b; cin>>a>>b; while (a[s1]!='\0'){ s1++; } while (b[s2]!='\0'){ s2++; } if(s1==s2){ cout<<"yes"; }else{ cout<<"no"; } return 0; }