結果

問題 No.525 二度寝の季節
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 21:34:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 1,000 ms
コード長 447 bytes
コンパイル時間 3,063 ms
コンパイル使用メモリ 76,300 KB
実行使用メモリ 55,268 KB
最終ジャッジ日時 2024-11-06 08:20:09
合計ジャッジ時間 10,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
54,804 KB
testcase_01 AC 157 ms
55,268 KB
testcase_02 AC 157 ms
55,012 KB
testcase_03 AC 162 ms
54,936 KB
testcase_04 AC 155 ms
54,952 KB
testcase_05 AC 156 ms
55,160 KB
testcase_06 AC 162 ms
54,968 KB
testcase_07 AC 156 ms
54,840 KB
testcase_08 AC 158 ms
54,920 KB
testcase_09 AC 157 ms
54,940 KB
testcase_10 AC 167 ms
54,912 KB
testcase_11 AC 159 ms
55,180 KB
testcase_12 AC 157 ms
54,932 KB
testcase_13 AC 159 ms
55,072 KB
testcase_14 AC 157 ms
54,860 KB
testcase_15 AC 162 ms
54,860 KB
testcase_16 AC 170 ms
54,724 KB
testcase_17 AC 167 ms
55,024 KB
testcase_18 AC 169 ms
54,916 KB
testcase_19 AC 165 ms
54,832 KB
testcase_20 AC 159 ms
54,992 KB
testcase_21 AC 143 ms
54,628 KB
testcase_22 AC 143 ms
54,672 KB
testcase_23 AC 156 ms
55,000 KB
testcase_24 AC 157 ms
54,904 KB
testcase_25 AC 159 ms
54,932 KB
testcase_26 AC 154 ms
54,672 KB
testcase_27 AC 155 ms
54,836 KB
testcase_28 AC 156 ms
55,200 KB
testcase_29 AC 157 ms
54,912 KB
testcase_30 AC 153 ms
54,972 KB
testcase_31 AC 156 ms
54,748 KB
testcase_32 AC 168 ms
54,996 KB
testcase_33 AC 157 ms
54,832 KB
testcase_34 AC 157 ms
54,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String[] s = sc.next().split(":");
		int[] ar = {Integer.parseInt(s[0]),Integer.parseInt(s[1])};
		int minute = ar[0]*60 + ar[1] + 5;
		int h = (minute/60)%24;
		int m = minute%60;
		String ans = "";
		if (h < 10) {ans += "0";}
		ans += h + ":";
		if (m < 10) {ans += "0";}
		ans += m;
		System.out.println(ans);
	}
}
0