#17580: c++ 10行解法


321qwedsa000@gmail.com (張皓雨)

學校 : 不指定學校
編號 : 70186
來源 : [203.72.100.2]
最後登入時間 :
2017-09-29 15:03:01
a022. 迴文 | From: [203.72.100.2] | 發表日期 : 2019-04-24 10:06

  1. #pragma GCC optimize("O3")
  2. #include <iostream>
  3. #define _ ios::sync_with_stdio(false),cin.tie(nullptr);
  4.  
  5. using namespace std;
  6. char* s[2] = {"no\n","yes\n"};
  7. int main() { _
  8. string str;
  9. while(cin >> str && !str.empty()) cout << s[equal(str.begin(),str.begin()+str.length()/2,str.rbegin())];
  10. }
 
ZeroJudge Forum