結果

問題 No.525 二度寝の季節
ユーザー fal_rndfal_rnd
提出日時 2017-06-27 19:46:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 286 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-10-04 13:30:38
合計ジャッジ時間 7,408 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
41,596 KB
testcase_01 AC 111 ms
41,052 KB
testcase_02 AC 102 ms
41,104 KB
testcase_03 AC 112 ms
41,464 KB
testcase_04 AC 112 ms
40,316 KB
testcase_05 AC 114 ms
41,460 KB
testcase_06 AC 99 ms
40,112 KB
testcase_07 AC 118 ms
41,232 KB
testcase_08 AC 96 ms
41,252 KB
testcase_09 AC 100 ms
41,472 KB
testcase_10 AC 111 ms
41,160 KB
testcase_11 AC 109 ms
40,088 KB
testcase_12 AC 119 ms
41,408 KB
testcase_13 AC 113 ms
41,416 KB
testcase_14 AC 126 ms
41,208 KB
testcase_15 AC 112 ms
40,204 KB
testcase_16 AC 116 ms
41,412 KB
testcase_17 AC 103 ms
41,212 KB
testcase_18 AC 112 ms
41,104 KB
testcase_19 AC 113 ms
41,272 KB
testcase_20 AC 100 ms
41,304 KB
testcase_21 AC 120 ms
41,056 KB
testcase_22 AC 120 ms
41,060 KB
testcase_23 AC 108 ms
41,384 KB
testcase_24 AC 119 ms
41,372 KB
testcase_25 AC 108 ms
41,188 KB
testcase_26 AC 103 ms
40,612 KB
testcase_27 AC 118 ms
41,172 KB
testcase_28 AC 106 ms
41,160 KB
testcase_29 AC 117 ms
41,136 KB
testcase_30 AC 123 ms
41,024 KB
testcase_31 AC 114 ms
41,212 KB
testcase_32 AC 112 ms
41,304 KB
testcase_33 AC 120 ms
41,544 KB
testcase_34 AC 121 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class A{
	public static void main(String[]c){
		c=new java.util.Scanner(System.in).next().split(":");
		int[]in={Integer.parseInt(c[0]),Integer.parseInt(c[1])};
		if(in[1]>54){
			in[0]++;
			in[0]%=24;
			in[1]-=60;
		}
		in[1]+=5;
		System.out.printf("%02d:%02d\n",in[0],in[1]);
	}
}
0