We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d4edff commit 5f44a46Copy full SHA for 5f44a46
2 files changed
백준/Gold/1749. 점수따먹기/README.md
@@ -4,15 +4,15 @@
4
5
### 성능 요약
6
7
-메모리: 21000 KB, 시간: 1252 ms
+메모리: 21492 KB, 시간: 1244 ms
8
9
### 분류
10
11
브루트포스 알고리즘, 다이나믹 프로그래밍, 누적 합
12
13
### 제출 일자
14
15
-2025년 4월 10일 11:12:49
+2025년 4월 10일 11:13:19
16
17
### 문제 설명
18
백준/Gold/1749. 점수따먹기/점수따먹기.java
@@ -43,7 +43,6 @@ static void inputSetting() throws Exception{
43
bord[i][j] = Integer.parseInt(st.nextToken());
44
45
s[i + 1][j + 1] = s[i][j + 1] + s[i + 1][j] - s[i][j] + bord[i][j];
46
- ans = Math.max(ans, s[i + 1][j + 1]);
47
}
48
49
0 commit comments