結果

問題 No.525 二度寝の季節
ユーザー tsunabittsunabit
提出日時 2018-07-01 15:07:38
言語 Java
(openjdk 23)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 659 bytes
コンパイル時間 3,846 ms
コンパイル使用メモリ 78,852 KB
実行使用メモリ 55,100 KB
最終ジャッジ日時 2024-07-01 01:12:05
合計ジャッジ時間 11,097 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
54,636 KB
testcase_01 AC 161 ms
54,756 KB
testcase_02 AC 160 ms
54,884 KB
testcase_03 AC 162 ms
55,016 KB
testcase_04 AC 161 ms
54,992 KB
testcase_05 AC 162 ms
54,968 KB
testcase_06 AC 161 ms
54,708 KB
testcase_07 AC 161 ms
55,036 KB
testcase_08 AC 161 ms
54,948 KB
testcase_09 AC 163 ms
54,712 KB
testcase_10 AC 162 ms
54,472 KB
testcase_11 AC 164 ms
54,916 KB
testcase_12 AC 158 ms
54,620 KB
testcase_13 AC 158 ms
54,880 KB
testcase_14 AC 159 ms
54,808 KB
testcase_15 AC 157 ms
54,732 KB
testcase_16 AC 148 ms
54,440 KB
testcase_17 AC 161 ms
55,100 KB
testcase_18 AC 160 ms
54,616 KB
testcase_19 AC 159 ms
55,012 KB
testcase_20 AC 161 ms
54,668 KB
testcase_21 AC 158 ms
54,888 KB
testcase_22 AC 162 ms
54,976 KB
testcase_23 AC 162 ms
54,864 KB
testcase_24 AC 163 ms
54,884 KB
testcase_25 AC 161 ms
54,616 KB
testcase_26 AC 160 ms
54,880 KB
testcase_27 AC 165 ms
54,952 KB
testcase_28 AC 162 ms
54,904 KB
testcase_29 AC 158 ms
54,736 KB
testcase_30 AC 158 ms
54,960 KB
testcase_31 AC 160 ms
54,820 KB
testcase_32 AC 161 ms
54,840 KB
testcase_33 AC 164 ms
54,704 KB
testcase_34 AC 165 ms
54,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No525 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		String[] t = sc.next().split(":");
		LocalDateTime tt = LocalDateTime.of(2016, 1, 1, Integer.parseInt(t[0]), Integer.parseInt(t[1]));
		// DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm");
		tt = tt.plusMinutes(5);
		// dtf.format(tt);
		String h = String.valueOf(tt.getHour());
		String m = String.valueOf(tt.getMinute());
		System.out.println((h.length() == 1 ? "0" + h : h) + ":" + (m.length() == 1 ? "0" + m : m));
	}
}
0