Recent Posts
Notice
No Rules Rules
음계 (feat. 백준, 2920번) 본문
728x90
반응형
음계
https://www.acmicpc.net/problem/2920
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int arr[8], ans;
for(register int i = 0; i < 8; ++i)
cin >> arr[i];
if(arr[0] < arr[1]){
ans = 0;
for(register int i = 1; i < 7; ++i)
if(arr[i] > arr[i + 1]){
ans = 2;
break;
}
}
else{
ans = 1;
for(register int i = 1; i < 7; ++i)
if(arr[i] < arr[i + 1]){
ans = 2;
break;
}
}
if(ans == 0)
cout << "ascending";
else if(ans == 1)
cout << "descending";
else
cout << "mixed";
return 0;
}
// *&)*@*
문제의 요구사항에 따라 정렬된 상태를 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
N 찍기 (feat. 백준, 2741번) (0) | 2022.09.23 |
---|---|
검증수 (feat. 백준, 2475번) (0) | 2022.09.23 |
돌멩이 제거 (feat. 백준, 1867번) (2) | 2022.09.22 |
열혈강호 2 (feat. 백준, 11376번) (0) | 2022.09.22 |
열혈강호 (feat. 백준, 11375번) (0) | 2022.09.22 |
Comments