結果

問題 No.525 二度寝の季節
ユーザー YOSHIYOSHI
提出日時 2021-03-18 21:59:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 472 bytes
コンパイル時間 3,650 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 41,152 KB
最終ジャッジ日時 2024-11-17 04:07:12
合計ジャッジ時間 8,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,864 KB
testcase_01 AC 109 ms
40,860 KB
testcase_02 AC 110 ms
40,640 KB
testcase_03 AC 121 ms
41,104 KB
testcase_04 AC 117 ms
40,884 KB
testcase_05 AC 116 ms
40,980 KB
testcase_06 AC 105 ms
40,556 KB
testcase_07 AC 113 ms
40,816 KB
testcase_08 AC 119 ms
40,868 KB
testcase_09 AC 110 ms
40,816 KB
testcase_10 AC 115 ms
40,956 KB
testcase_11 AC 111 ms
41,152 KB
testcase_12 AC 112 ms
40,892 KB
testcase_13 AC 118 ms
40,940 KB
testcase_14 AC 107 ms
40,512 KB
testcase_15 AC 113 ms
40,816 KB
testcase_16 AC 111 ms
40,800 KB
testcase_17 AC 114 ms
40,776 KB
testcase_18 AC 106 ms
39,764 KB
testcase_19 AC 103 ms
39,484 KB
testcase_20 AC 108 ms
40,684 KB
testcase_21 AC 106 ms
40,916 KB
testcase_22 AC 109 ms
40,776 KB
testcase_23 AC 113 ms
41,072 KB
testcase_24 AC 110 ms
40,796 KB
testcase_25 AC 113 ms
40,800 KB
testcase_26 AC 115 ms
40,820 KB
testcase_27 AC 101 ms
40,000 KB
testcase_28 AC 116 ms
40,788 KB
testcase_29 AC 112 ms
40,868 KB
testcase_30 AC 113 ms
40,872 KB
testcase_31 AC 112 ms
40,908 KB
testcase_32 AC 116 ms
40,928 KB
testcase_33 AC 113 ms
40,928 KB
testcase_34 AC 102 ms
39,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000525_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String[] t = br.readLine().split(":");
		int h = Integer.parseInt(t[0]);
		int m = Integer.parseInt(t[1]);
		System.out.println(String.format("%02d:%02d", (h + ((m + 5) / 60)) % 24, (m + 5) % 60));
	}
}
0