문제링크
https://www.acmicpc.net/problem/2798
여기서 if 문 조건을 줬어야했다.
i,j,z 가 값을 가져오면서 똑같은 위치에 있는 값을 접근하는 경우를 제외시켜주었다.
N,M = map(int,input().split())
num_list = list(map(int,input().split()))
sum = 0
for i in num_list[:N-2]:
for j in num_list[1:N-1]:
for z in num_list[2:]:
if (i==j) or (j==z) or (z==i):
continue
temp = i + j + z
if temp <=M and temp>sum:
sum = temp
print(sum)
'알고리즘 > 백준' 카테고리의 다른 글
[Python]7568_덩치 (0) | 2022.05.02 |
---|---|
[Python]2231_분해합 (0) | 2022.04.26 |
[Java] 백준_4101_크냐? (0) | 2021.12.01 |
[JAVA] 백준_1926_그림 (0) | 2021.11.16 |
[JAVA]백준_11909_배열탈출 (0) | 2021.10.18 |