| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155518 | 卢语宸 | 字符串长度判断 | C++ | Wrong Answer | 1 MS | 268 KB | 269 | 2026-06-07 14:55:01 |
#include<bits/stdc++.h> #include<cstring> using namespace std; char d[100000],e[100000]; int a,b,c; int main(){ cin.getline(d,100000); cin.getline(e,100000); a=strlen(d); b=strlen(e); if(a==b){ cout<<"yes"; }else{ cout<<"no"; } return 0; }
------Input------
qsoeaidcsj uwbhmfcfjz
------Answer-----
yes
------Your output-----
no