Recent Posts
Notice
No Rules Rules
치킨댄스를 추는 곰곰이를 본 임스 2 (feat. 백준, 26068번) 본문
728x90
반응형
치킨댄스를 추는 곰곰이를 본 임스 2
https://www.acmicpc.net/problem/26068
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, ans = 0;
string str;
cin >> N;
for(register int n = 0; n < N; ++n){
cin >> str;
str.erase(0, 2);
if(stoi(str) <= 90)
++ans;
}
cout << ans;
return 0;
}
// *&)*@*
반응형
단순 문자열 조작 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
2022년이 아름다웠던 이유 (feat. 백준, 27065번) (0) | 2023.01.02 |
---|---|
붙임성 좋은 총총이 (feat. 백준, 26069번) (0) | 2022.11.28 |
뒤집기 (feat. 백준, 1439번) (0) | 2022.11.23 |
한다 안한다 (feat. 백준, 5789번) (0) | 2022.11.23 |
날짜 계산 (feat. 백준, 1476번) (0) | 2022.11.23 |
Comments