| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146558 | 李折曦 | 字符串长度判断 | C++ | Wrong Answer | 0 MS | 272 KB | 219 | 2026-01-29 13:14:21 |
#include <bits/stdc++.h> using namespace std; int main (){ char s[152],a[152]; int n1,n2; cin>>s>>a; n1 = strlen(s); n2 = strlen(a); if(n1==n2){ cout<<"Yes"; }else{ cout<<"No"; } return 0; }
------Input------
wlglqarn lgmmi
------Answer-----
no
------Your output-----
No