| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 111343 | 吴梓玄 | 字符串长度判断 | C++ | Wrong Answer | 0 MS | 284 KB | 211 | 2025-03-01 16:37:50 |
#include <bits/stdc++.h> using namespace std; int main() { string s,t; cin>>s; cin>>t; int n=s.size(); int m=t.size(); if (n==m){ cout<<"yes"; } else{ cout<<"no"; } return 0; }
------Input------
wlglqarn lgmmi
------Answer-----
no
------Your output-----