알고리즘/삼성 SW expert Academy

[SWEA] 10059. 유효기간_JAVA

뇌장하드 2022. 5. 22. 20:12

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

 

SW Expert Academy

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

swexpertacademy.com

 

 

월은 00이 없다. 

 

 

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++) {
            String st = sc.next();
         	int A = Integer.parseInt(st.substring(0, 2));
            int B = Integer.parseInt(st.substring(2, 4));
            String ans = "";
            if((A>0 && A<13) && (B>0 && B<13)) ans = "AMBIGUOUS";
            else if((A>0 && A<13) && (B==0 || B>=13)) ans = "MMYY";
            else if((B>0 && B<13) && (A==0 || A>=13)) ans = "YYMM";
            else ans = "NA";
             
            System.out.println("#"+test_case+" "+ans);
        }
    }
}