結果

問題 No.525 二度寝の季節
ユーザー syuki791syuki791
提出日時 2017-07-01 20:59:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 414 bytes
コンパイル時間 4,166 ms
コンパイル使用メモリ 79,920 KB
実行使用メモリ 55,136 KB
最終ジャッジ日時 2024-10-05 00:12:21
合計ジャッジ時間 8,214 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,600 KB
testcase_01 AC 130 ms
54,804 KB
testcase_02 AC 125 ms
54,696 KB
testcase_03 AC 121 ms
54,604 KB
testcase_04 AC 134 ms
54,680 KB
testcase_05 AC 135 ms
54,968 KB
testcase_06 AC 134 ms
54,892 KB
testcase_07 AC 136 ms
54,708 KB
testcase_08 AC 133 ms
54,860 KB
testcase_09 AC 132 ms
54,784 KB
testcase_10 AC 140 ms
55,136 KB
testcase_11 AC 147 ms
54,724 KB
testcase_12 AC 132 ms
54,884 KB
testcase_13 AC 123 ms
54,540 KB
testcase_14 AC 119 ms
54,356 KB
testcase_15 AC 135 ms
54,828 KB
testcase_16 AC 139 ms
54,652 KB
testcase_17 AC 139 ms
54,700 KB
testcase_18 AC 123 ms
54,548 KB
testcase_19 AC 134 ms
54,912 KB
testcase_20 AC 127 ms
54,572 KB
testcase_21 AC 119 ms
55,000 KB
testcase_22 AC 141 ms
54,816 KB
testcase_23 AC 143 ms
54,848 KB
testcase_24 AC 137 ms
54,872 KB
testcase_25 AC 136 ms
54,760 KB
testcase_26 AC 125 ms
54,744 KB
testcase_27 AC 134 ms
54,864 KB
testcase_28 AC 134 ms
54,588 KB
testcase_29 AC 146 ms
54,780 KB
testcase_30 AC 141 ms
55,092 KB
testcase_31 AC 136 ms
54,788 KB
testcase_32 AC 133 ms
54,708 KB
testcase_33 AC 131 ms
54,660 KB
testcase_34 AC 139 ms
54,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	
	public static void main(String[] args) {
	Scanner s = new Scanner(System.in);
	String[] str = s.nextLine().split(":");
	s.close();
	int hour = Integer.parseInt(str[0]);
	int min =Integer.parseInt(str[1]);
	int minAns = (min+5)%60;
	int hourAns = ((min+5)/60+hour)%24;
	System.out.println(String.format("%02d", hourAns)+":"+String.format("%02d", minAns));
	
	}

}
0