Skip to content

Commit 5f44a46

Browse files
committed
[Gold IV] Title: 점수따먹기, Time: 1244 ms, Memory: 21492 KB -BaekjoonHub
1 parent 6d4edff commit 5f44a46

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

백준/Gold/1749. 점수따먹기/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
### 성능 요약
66

7-
메모리: 21000 KB, 시간: 1252 ms
7+
메모리: 21492 KB, 시간: 1244 ms
88

99
### 분류
1010

1111
브루트포스 알고리즘, 다이나믹 프로그래밍, 누적 합
1212

1313
### 제출 일자
1414

15-
2025년 4월 10일 11:12:49
15+
2025년 4월 10일 11:13:19
1616

1717
### 문제 설명
1818

백준/Gold/1749. 점수따먹기/점수따먹기.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ static void inputSetting() throws Exception{
4343
bord[i][j] = Integer.parseInt(st.nextToken());
4444

4545
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]);
4746
}
4847
}
4948
}

0 commit comments

Comments
 (0)