Recent Posts
Notice
No Rules Rules
첨탑 밀어서 부수기 (feat. 백준, 28014번) 본문
728x90
반응형
첨탑 밀어서 부수기
https://www.acmicpc.net/problem/28014
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, t1 = 0, t2, cnt = 0;
cin >> N;
for(register int n = 0; n < N; ++n){
cin >> t2;
if(t1 <= t2)
++cnt;
t1 = t2;
}
cout << cnt;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
Parentheses Tree (feat. 백준, 26111번) (0) | 2023.05.19 |
---|---|
슬슬 가지를 먹지 않으면 죽는다 (feat. 백준, 27945번) (0) | 2023.05.18 |
미로만들기 (feat. 백준, 2665번) (0) | 2023.04.27 |
크리스마스 선물 (feat. 백준, 14235번) (0) | 2023.04.26 |
학교 탐방하기 (feat. 백준, 13418번) (0) | 2023.04.26 |
Comments