java
N x N 크기의 농장이 격자 모양으로 구성되어 있으며, 각 격자 칸에는 농작물의 가치가 표시되어 있다. 이 농장에서는 특별히 중앙에서 시작하여 마름모 모양으로 농작물을 수확한다. 마름모 구역 내의 농작물 가치의 합을 구하는 문제
각 줄에서 중앙으로부터의 거리에 따라 수확 범위를 결정하고, 해당 범위 내의 값들을 더하여 문제를 풀었다.
마름모 형태의 수확 구역을 계산하는 것이 처음에는 복잡해 보였지만, 중앙으로부터의 거리 개념을 사용하니 조금 수월하게 풀 수 있었습니다.
import java.util.Scanner;
import java.io.FileInputStream;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T;
T=sc.nextInt();
for(int test_case = 1; test_case <= T; test_case++)
{
int N = sc.nextInt();
int[][] farm = new int[N][N];
int total = 0;
for (int i = 0; i < N; i++) {
String row = sc.next();
for (int j = 0; j < N; j++) {
farm[i][j] = row.charAt(j) - '0';
}
}
int center = N / 2;
for (int i = 0; i < N; i++) {
int distance = Math.abs(center - i);
for (int j = distance; j < N - distance; j++) {
total += farm[i][j];
}
}
System.out.println("#" + test_case + " " + total);
}
sc.close();
}
}
Java테스트 시 의존성 주입(Dependency Injection)과 Mockito Spring 애플리케이션을 개발하다 보면, 테스트 코드에서 실제 빈(Bean)을 사용하지…
들어가며 스프링 기반 프로젝트에서 좋은 설계 구조와 테스트 전략은 소프트웨어 품질과 유지보수성에 직결됩니다. 최근 학습한…
들어가며 코드를 작성할 때 종종 "이 로직을 어떻게 단순하고 읽기 쉽게 표현할 수 있을까?" 고민하게…
HTTP 상태코드란 무엇인가? HTTP 상태코드(HTTP Status Code)는 서버가 클라이언트의 요청을 처리한 결과를 수치화된 코드로 나타내는…
HTTP란 무엇인가? HTTP(Hypertext Transfer Protocol)는 웹에서 데이터를 주고받기 위해 사용하는 응용 계층 프로토콜입니다. 우리가 브라우저에서…
View Comments
Howdy just wanted to give you a quick heads up. The words in your content seem to be running off the
screen in Firefox. I'm not sure if this is a format
issue or something to do with browser compatibility but I thought I'd post to let you know.
The style and design look great though! Hope you get the issue fixed soon. Thanks
Thank you for letting me know. I will look into it.
It’s the best time to make some plans for the long
run and it’s time to be happy. I’ve read this publish and if I may I want to suggest you few attention-grabbing
issues or tips. Perhaps you can write subsequent articles relating to
this article. I want to learn even more things about it!