結果

問題 No.525 二度寝の季節
ユーザー mosmos_21mosmos_21
提出日時 2017-06-09 22:24:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 364 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-09-22 14:57:26
合計ジャッジ時間 7,684 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,352 KB
testcase_01 AC 124 ms
54,060 KB
testcase_02 AC 124 ms
54,292 KB
testcase_03 AC 126 ms
54,148 KB
testcase_04 AC 123 ms
54,156 KB
testcase_05 AC 127 ms
54,132 KB
testcase_06 AC 125 ms
54,096 KB
testcase_07 AC 125 ms
54,200 KB
testcase_08 AC 113 ms
52,760 KB
testcase_09 AC 126 ms
54,056 KB
testcase_10 AC 124 ms
53,880 KB
testcase_11 AC 130 ms
54,052 KB
testcase_12 AC 126 ms
54,068 KB
testcase_13 AC 123 ms
53,952 KB
testcase_14 AC 123 ms
54,152 KB
testcase_15 AC 124 ms
54,160 KB
testcase_16 AC 124 ms
54,160 KB
testcase_17 AC 129 ms
54,296 KB
testcase_18 AC 129 ms
54,096 KB
testcase_19 AC 127 ms
54,136 KB
testcase_20 AC 127 ms
54,140 KB
testcase_21 AC 116 ms
53,136 KB
testcase_22 AC 126 ms
54,028 KB
testcase_23 AC 130 ms
53,956 KB
testcase_24 AC 115 ms
53,052 KB
testcase_25 AC 125 ms
53,904 KB
testcase_26 AC 112 ms
52,824 KB
testcase_27 AC 126 ms
54,152 KB
testcase_28 AC 117 ms
53,036 KB
testcase_29 AC 126 ms
54,228 KB
testcase_30 AC 131 ms
54,092 KB
testcase_31 AC 127 ms
54,132 KB
testcase_32 AC 125 ms
54,008 KB
testcase_33 AC 127 ms
53,896 KB
testcase_34 AC 124 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static Scanner in = new Scanner(System.in);
	public static void main(String[] args){
		String[] ss = in.nextLine().split(":");
		int a = Integer.parseInt(ss[1]) + 5;
		int b = Integer.parseInt(ss[0]);
		if(a >= 60){
			a %= 60;
			b++;
		}
		if(b >= 24){
			b %= 24;
		}
		System.out.printf("%02d:%02d", b, a);
	}
}
0