코드와이
[SW Expert Academy] 3376. 정사각형 분할 놀이 본문
문제링크
package D3;
import java.util.Scanner;
public class 정삼각형_분할_놀이 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
StringBuilder sb = new StringBuilder();
int T = sc.nextInt();
for( int tc = 1 ; tc <= T ; tc++) {
sb.append("#" + tc + " ");
long n = sc.nextLong();
long m = sc.nextLong();
long ans = 0l;
for( int i = 1 ; i <= n / m ; i++) {
ans += 2 * i - 1;
}
sb.append(ans);
System.out.println(sb);
sb.setLength(0);
}
}
}
'SW_Expert' 카테고리의 다른 글
[SW Expert Academy] 4789. 성공적인 공연 기획 (0) | 2021.02.04 |
---|---|
[SW Expert Academy] 4371. 항구에 들어오는 배 (0) | 2021.02.04 |
[SW Expert Academy] 3376. 파도반 수열 (0) | 2021.02.04 |
[SW Expert Academy] 6019. 기차사이의 파리 (0) | 2021.02.04 |
[SW Expert Academy] 6853. 직사각형과 점 (0) | 2021.02.04 |