[D3] 프리셀 통계 - 12051
성능 요약
메모리: 31,300 KB, 시간: 207 ms, 코드길이: 711 Bytes
제출 일자
2023-10-28 20:04
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
import java.util.Scanner;
class Solution
{
public static void main(String args[]) throws Exception{
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int tc = 1; tc <= T; tc++)
{
long n = sc.nextLong();
int pd = sc.nextInt();
int pg = sc.nextInt();
String result = "Broken";
if(!((pd != 0 && pg == 0) || (pd != 100 && pg == 100))){
while( n > 0){
if( (n * pd) % 100 == 0){
result = "Possible";
break;
}
n--;
}
}
System.out.println("#" + tc + " " + result);
}
}
}
'알고리즘 - SWEA > D3' 카테고리의 다른 글
[SW expert Academy] SWEA 7728번 다양성 측정 자바(Java) (0) | 2023.10.29 |
---|---|
[SW expert Academy] SWEA 12004번 구구단 1 자바(Java) (0) | 2023.10.28 |
[SW expert Academy] SWEA 12741번 두 전구 자바(Java) (0) | 2023.10.28 |
[SW expert Academy] SWEA 13038번 교환학생 자바(Java) (0) | 2023.10.28 |
[SW expert Academy] SWEA 13229번 일요일 자바(Java) (0) | 2023.10.28 |