Hackerrank | Birthday Cake Candles
4938 단어 hackerrank2020SISSC2020
link
https://www.hackerrank.com/challenges/birthday-cake-candles/problem
problem
가장 높은 수 기준으로 같은 숫자가 있으면 그 횟수 출력하기
숫자 입력 받기 > 가장 큰 수 찾기 > 가장 큰 수와 같은 수가 몇 번이나 있는지 세기 > 출력
code
#define _CRT_SECURE_NO_WARNINGS
#incldue <stdio.h>
int main()
{
int n;
int max;
int res = 0;
scanf("%d", &n);
int ar[10000000] = {0,};
for (int i=0; i<n; i++)
scanf("%d", &ar[i]);
max = ar[0];
for (int i=1; i<n; i++)
if (ar[i] > max)
max = ar[i];
for (int i=0; i<n; i++)
if (ar[i] == max)
res++;
printf("%d", res);
return 0;
result
Author And Source
이 문제에 관하여(Hackerrank | Birthday Cake Candles), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@2rlo/Hackerrank-Birthday-Cake-Candles저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)