Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 2530] 인공지능 시계 본문
반응형
알고리즘 문제에서 시계, 달력 문제는 참 단골 문제같다.
시, 분, 초가 각각 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);
}
}
반응형
'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글
[백준 10158] 개미 (0) | 2019.07.02 |
---|---|
[백준 2589] 보물섬 (0) | 2019.07.02 |
[백준 1652] 누울 자리를 찾아라 (0) | 2019.07.02 |
[백준 1915] 가장 큰 정사각형 (0) | 2019.07.02 |
[백준 2903] 중앙 이동 알고리즘 (0) | 2019.06.29 |
Comments