01-09 04:37
Recent Posts
Recent Comments
Tags
- νλ‘λ³΄λ Έ
- ICT
- API MarketPlace κΈλ‘λ² μν¬ν°μ¦
- Spring
- APIλ§μΌνλ μ΄μ€
- python
- νμ΄μ곡λͺ¨μ
- linux
- DB
- μ€ν½λ ν
- ICTλ©ν λ§
- μ΄λΈμ
- μ¨μΌλν
- TSQL
- Java
- RaspberryPi
- JOBνκ³
- νμ΄μ¬
- mysql
- μλμ΄λ Έ
- Naver Cloud
- SQL
- μ‘νκ³
- μλ°
- DATABASE
- λ°μ΄ν°λ² μ΄μ€
- μ€ν½μ€λΉ
- ict곡λͺ¨μ
- appetizer
- νμ΄μ
- Today
- Total
miinsun
[Algorithm]μκ³ λ¦¬μ¦ μλ°_14 보μ΄λ νμ λ³Έλ¬Έ
π¬ λ¬Έμ μ€λͺ
μ μλμ΄ Nλͺ μ νμμ μΌλ ¬λ‘ μΈμ μ΅λλ€. μΌλ ¬λ‘ μ μλ νμμ ν€κ° μμμλΆν° μμλλ‘ μ£Όμ΄μ§ λ, 맨 μμ μ μλ μ μλμ΄ λ³Ό μ μλ νμμ μλ₯Ό ꡬνλ νλ‘κ·Έλ¨μ μμ±νμΈμ.
(μμ μ μλ μ¬λλ€λ³΄λ€ ν¬λ©΄ 보μ΄κ³ , μκ±°λ κ°μΌλ©΄ 보μ΄μ§ μμ΅λλ€.)
π¨ μ μΆλ ₯ μ
μ λ ₯ - 첫 μ€μ μ μ N(5<=N<=100,000)μ΄ μ λ ₯λλ€. κ·Έ λ€μμ€μ Nλͺ μ νμμ ν€κ° μμμλΆν° μμλλ‘ μ£Όμ΄μ§λ€.
8
130 135 148 140 145 150 150 153
μΆλ ₯ - μ μλμ΄ λ³Ό μ μλ μ΅λνμμλ₯Ό μΆλ ₯νλ€.
5
β
π» Solution.java
import java.util.Scanner;
public class Main {
public int solution(int[] arr) {
int cnt = 0;
int max = Integer.MIN_VALUE;
for(int i = 1; i < arr.length; i ++) {
if(arr[i] > max) {
max = arr[i];
cnt++;
}
}
return cnt;
}
public static void main(String[] args){
Main main = new Main();
Scanner sc =new Scanner(System.in);
int size = sc.nextInt();
int[] arr = new int[size + 1];
for(int i = 1; i <= size; i++)
arr[i] = sc.nextInt();
System.out.println(main.solution(arr));
sc.close();
return ;
}
}
'Algorithm > Java' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[Algorithm]μκ³ λ¦¬μ¦ μλ°_16 νΌλ³΄λμΉ μμ΄ (0) | 2022.01.03 |
---|---|
[Algorithm]μκ³ λ¦¬μ¦ μλ°_15 κ°μ λ°μ 보 (0) | 2022.01.03 |
[Algorithm]μκ³ λ¦¬μ¦ μλ°_13 ν° μ μΆλ ₯νκΈ° (0) | 2022.01.03 |
[Algorithm]μκ³ λ¦¬μ¦ μλ°_12 μνΈ (0) | 2022.01.03 |
[Algorithm]μκ³ λ¦¬μ¦ μλ°_11 λ¬Έμμ΄ μμΆ (0) | 2022.01.03 |
Comments