Dev.baelanche

[백준 2530] 인공지능 시계 본문

Data Structure & Algorithm/PS - JAVA

[백준 2530] 인공지능 시계

baelanche 2019. 7. 2. 21:23
반응형

 

알고리즘 문제에서 시계, 달력 문제는 참 단골 문제같다.

시, 분, 초가 각각 24, 60, 60 미만으로 되게 만들어주면 된다.

 

public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        
        int d = sc.nextInt();
        
        c += d;
        b += c/60;
        c %= 60;
        a += b/60;
        b %= 60;
        a %= 24;
        
        System.out.println(a + " " + b + " " + c);
    }
}
반응형
Comments