Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155519 卢语宸 字符串长度判断 C++ Accepted 1 MS 276 KB 232 2026-06-07 14:56:34

Tests(10/10):


Code:

#include<bits/stdc++.h> #include<cstring> using namespace std; char d[100000],e[100000]; int a,b,c; int main(){ cin>>d>>e; a=strlen(d); b=strlen(e); if(a==b){ cout<<"yes"; }else{ cout<<"no"; } return 0; }