카테고리 없음

[SWEA] 12051. 프리셀 통계_JAVA

뇌장하드 2022. 5. 17. 23:05

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AXmwMidaSLIDFARX 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

import java.util.Scanner;
 
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++)
        {
            long n = sc.nextLong();     // 오늘 한 게임 수 최대값
            int d = sc.nextInt();       // 오늘 한 게임 승 퍼센트
            int g = sc.nextInt();       // 총 게임 승 퍼센트
             
            boolean check = false;
             
            if (!(d != 0 && g == 0) && !(d != 100 && g == 100)) {
                while(n > 0){
                    if ((d * n--) % 100 == 0) {
                        check = true;
                        break;
                    }
                }
            }
            System.out.printf("#%d %s\n", test_case, check ? "Possible" : "Broken");
        }
    }
}