[SWEA] 5601. 쥬스 나누기
문제 링크
풀이 과정
문제에서 모든 사람은 목이 마른 상태이기 때문에, 최대한의 쥬스를 마시고자 최선의 전략을 쓴다고 적혀있습니다. 이 말은 결국, 모두가 공평하게 나눠갖도록 해야 한다는 것을 알 수 있습니다.
코드
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int TC = sc.nextInt();
for (int tc = 1; tc <= TC; tc++) {
int N = sc.nextInt();
System.out.print("#" + tc + " ");
for (int i = 0; i < N; i++) System.out.print("1/" + N + " ");
System.out.println();
}
}
}
댓글남기기