import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int max = -1;
StringTokenizer st = new StringTokenizer(br.readLine());
for(int i=0; i<n; i++){
int num = Integer.parseInt(st.nextToken()) - (n - i);
if(num > max) max = num;
}
System.out.println(max);
br.close();
}
}
'Coding Test > 백준' 카테고리의 다른 글
[백준/자바] 2018 - 수들의 합 5 (0) | 2023.06.03 |
---|---|
[백준/자바] 10986 - 나머지 합 (0) | 2023.05.31 |
[백준/자바] 28062 - 준석이의 사탕 사기 (0) | 2023.05.23 |
[백준/자바] 28074 - 모비스 (0) | 2023.05.23 |
[백준/자바] 28014 - 첨탑 밀어서 부수기 (0) | 2023.05.12 |