#41880: C++程式碼解答AC


ken.mhhsu@gmail.com (Ken Min-Hao Hsu)

學校 : 不指定學校
編號 : 256975
來源 : [118.166.202.166]
最後登入時間 :
2024-06-18 20:24:30
h033. 雜訊移除 (Noise) -- TOI練習賽202112新手組第1題 | From: [36.229.24.230] | 發表日期 : 2024-09-06 21:12

#include <bits/stdc++.h>
using namespace std;

int main() {
  string str, str2 = "", str3 = "";
  char a;
  cin >> str >> a;
  for (int i = 0; i < str.size(); i++) {
    if (str[i] != a) {
      str2 += str[i];
    }
  }
  for (int i = str2.size() - 1; i >= 0; i--) {
    str3 += str2[i];
  }

  if (str3 == str2) {
    cout << "Yes" << endl;
  } else {
    cout << "No" << endl;
  }
}

 
ZeroJudge Forum