| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146557 | 王培臻 | 字符串长度判断 | C++ | Accepted | 1 MS | 288 KB | 229 | 2026-01-29 13:14:19 |
#include<bits/stdc++.h> using namespace std; int main() { char a[100001],s[100001]; long long d=0,f=0; cin>>a>>s; d=strlen(a); f=strlen(s); if(d==f){ cout<<"yes"; }else{ cout<<"no"; } return 0; }