728x90
📍 행운의 티켓
https://www.acmicpc.net/problem/1639
✨ 전체코드 ✨
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader sc = new BufferedReader(new InputStreamReader(System.in));
String str = sc.readLine();
int len = str.length();
int max = 0;
for(int n=1; n <= len/2; n++) {
for (int i=0; i <= len - 2*n; i++) {
int left = 0;
int right = 0;
for (int j=i; j < i+n; j++) {
left += str.charAt(j) - '0';
}
for (int j = i+n; j < i + 2*n; j++) {
right += str.charAt(j) - '0';
}
if (left == right) max = Math.max(max, 2 * n);
}
} System.out.println(max);
}
}
🌀 성능
- 메모리 : 14,200 KB
- 시간 : 112 ms
'Algorithm > Boj' 카테고리의 다른 글
[JAVA | 백준] #18821 홀수와 짝수의 대결 (0) | 2024.07.16 |
---|---|
[JAVA | 백준] #14710 고장난 시계 😑⏰ (1) | 2024.07.16 |
[JAVA | 백준] #14581 팬들에게 둘러싸인 홍준 (0) | 2024.07.10 |
[JAVA | 백준] #18229 내가 살게, 아냐 내가 살게 🙋🏻♀️💳🙅🏻♂️🙋🏻♂️💳 (0) | 2024.07.09 |
[JAVA | 백준] #1816 암호 키 🔐 (0) | 2024.07.09 |