250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JavaScript
- Algorithm
- 연습문제
- gsap
- scrolly
- ScrollToPlugin
- 자바
- 데이터통신
- quizlet
- 네트워킹
- Node.js
- 함수
- java
- JLPT
- 초연결 사회의 데이터통신과 네트워킹
- 자바스크립트
- React
- html
- 백준
- 이벤트
- 일본어
- 알고리즘
- 초연결사회의 데이터통신과 네트워킹
- 라이브러리
- 단어장
- 한빛아카데미
- ArrayList
- prettier-code formatter
- reactjs code snippets
- 스크롤
Archives
- Today
- Total
umilove98의 블로그
백준 2325 Java 자바 본문
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Q2325 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int h = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
int t = Integer.parseInt(br.readLine());
for(int i = 0; i < t; i++) {
m++;
if(m > 59) {
h++;
if(h > 23) {
h = 0;
}
m = 0;
}
}
System.out.println(h + " " + m);
}
}
|
cs |
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 2530 Java 자바 (0) | 2021.08.26 |
---|---|
백준 1934 Java 자바 (0) | 2021.08.25 |
백준 1789 Java 자바 (0) | 2021.08.20 |
백준 2480 Java 자바 (0) | 2021.08.20 |
백준 1769 Java 자바 (0) | 2021.08.20 |