250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- sql
- 큐
- spring boot
- priority_queue
- 리소스모니터링
- date
- math
- CSS
- html
- JPA
- map
- Java
- Union-find
- 스프링부트
- List
- Properties
- GC로그수집
- set
- alter
- union_find
- string
- NIO
- Calendar
- scanner
- 스택
- BFS
- dfs
- deque
- javascript
- 힙덤프
Archives
- Today
- Total
매일 조금씩
백준 10988번 : 팰린드롬인지 확인하기 C++ 본문
728x90
반응형
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
cin >> s;
int j = s.size() - 1;
int count = 0;
for (int i = 0; i < s.size(); i++) {
if (s[i] == s[j--])
count++;
}
if (count == s.size())
cout << 1 << endl;
else
cout << 0 << endl;
}
728x90
반응형
'알고리즘 > 구현' 카테고리의 다른 글
[C++] 백준 2029번 : 음계 (0) | 2021.02.04 |
---|