본문 바로가기

분류 전체보기3036

[백준/파이썬] 27251번 Звездочки -Codefor i in range(1, int(input()) + 1): if i 2025. 4. 13.
[백준/파이썬] 29667번 Ответный матч -Codea1, b1 = map(int, input().split(":"))b2, a2 = map(int, input().split(":"))print("YES" if a1 >= b2 and b1 >= a2 else "NO") 2025. 4. 12.
[백준/파이썬] 20571번 Elevators -Codedef solution(section, num): if section == "residential": if num == 1: return 1 elif 2 2025. 4. 11.
[백준/파이썬] 33779번 Back and Forth -Codes = input()print("beep" if s == s[::-1] else "boop") 2025. 4. 10.
[백준/파이썬] 24867번 Два станка -Codek = int(input())a, x = map(int, input().split())b, y = map(int, input().split())case1 = (k - a) * xcase2 = (k - b) * ycase3 = (k - a) * x + (k - a - b) * ycase4 = (k - b) * y + (k - a - b) * xprint(max(case1, case2, case3, case4, 0)) 2025. 4. 9.
[Spring] Pageable PageablePageable은 Spring Framework (특히 Spring Data)에서 페이징 처리를 쉽게 하기 위해 제공하는 인터페이스입니다. 즉,  "어떤 페이지를, 몇 개씩 가져올지 알려주는 정보"라고 이해하면 됩니다.  이러한 페이징을 개발하기 위해서는 page 관련 쿼리를 파라미터로 받아서 직접 처리하는 방법이 있었지만 Spring 프로젝트에서는 효과적으로 페이징을 처리할 수 있게 방법이 있습니다.🏷️ 의존성// jpa를 사용 안하는 경우implementation 'org.springframework.data:spring-data-commons'// jpa를 사용하는 경우implementation 'org.springframework.boot:spring-boot-starter-dat.. 2025. 4. 8.