1 条题解
-
0PA0728 LV 7 MOD @ 2018-01-29 01:15:07
#include <string> #include <iostream> using namespace std; int main() { int n; cin >> n; for( int i = 0; i < n; i++){ string s; cin >> s; string aa(s.rbegin(),s.rend()); if(!aa.compare(s)){ cout << "YES" << endl; }else{ cout << "NO" << endl; } } }
- 1
信息
- 难度
- 2
- 分类
- (无)
- 标签
- (无)
- 递交数
- 14
- 已通过
- 6
- 通过率
- 43%
- 上传者