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
- 백준
- 알고리즘
- 네트워킹
- 자바
- reactjs code snippets
- prettier-code formatter
- 연습문제
- 스크롤
- 단어장
- 한빛아카데미
- 데이터통신
- scrolly
- html
- ScrollToPlugin
- Algorithm
- gsap
- quizlet
- java
- 초연결 사회의 데이터통신과 네트워킹
- 이벤트
- JavaScript
- Node.js
- 초연결사회의 데이터통신과 네트워킹
- JLPT
- 일본어
- ArrayList
- 함수
- 자바스크립트
- 라이브러리
- React
Archives
- Today
- Total
umilove98의 블로그
백준 2530 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
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Q2530 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
int c = Integer.parseInt(st.nextToken());
int d = Integer.parseInt(br.readLine());
c += d;
b += c/60;
c %= 60;
a += b/60;
b %= 60;
a %= 24;
System.out.println(a + " " + b + " " + c);
}
}
|
cs |
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 2581 Java 자바 (0) | 2021.08.27 |
---|---|
백준 2163 Java 자바 (0) | 2021.08.27 |
백준 1934 Java 자바 (0) | 2021.08.25 |
백준 2325 Java 자바 (0) | 2021.08.21 |
백준 1789 Java 자바 (0) | 2021.08.20 |