We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7cd2ad commit 53270b5Copy full SHA for 53270b5
백준/Silver/15649. N과 M (1)/N과 M (1).java
@@ -14,7 +14,7 @@ public static void main(String[] args) throws IOException{
14
N = Integer.parseInt(st.nextToken());
15
M = Integer.parseInt(st.nextToken());
16
17
- arr = new int[N];
+ arr = new int[M];
18
isUsed = new boolean[N+1];
19
20
dfs(0);
백준/Silver/15649. N과 M (1)/README.md
@@ -4,15 +4,15 @@
4
5
### 성능 요약
6
7
-메모리: 22560 KB, 시간: 256 ms
+메모리: 22620 KB, 시간: 232 ms
8
9
### 분류
10
11
백트래킹
12
13
### 제출 일자
-2025년 11월 2일 03:21:28
+2025년 11월 2일 03:24:10
### 문제 설명
0 commit comments