Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
124780 | 罗锦墨 | 回文字符串I | C++ | Wrong Answer | 1 MS | 276 KB | 268 | 2025-07-12 15:08:28 |
#include<bits/stdc++.h> using namespace std; char a[150]; char b[150]; char c[150]; int main() { cin>>a>>b>>c; int alen=strlen(a); int blen=strlen(b); int clen=strlen(c); cout<<a[alen-1]; cout<<b[blen-1]; cout<<c[clen-1]; return 0; }
------Input------
ltpffytlohuaoofsqawhbfrvtppczdnumeicqcsvfgjvydqhhuuhhqdyvjgfvscqciemundzcpptvrfbhwaqsfooauholtyffptl
------Answer-----
Yes
------Your output-----
l