結果

問題 No.525 二度寝の季節
ユーザー fal_rndfal_rnd
提出日時 2017-06-27 19:41:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 369 bytes
コンパイル時間 3,251 ms
コンパイル使用メモリ 81,368 KB
実行使用メモリ 41,900 KB
最終ジャッジ日時 2024-10-04 13:31:12
合計ジャッジ時間 8,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,460 KB
testcase_01 AC 105 ms
41,580 KB
testcase_02 AC 117 ms
40,364 KB
testcase_03 AC 110 ms
40,028 KB
testcase_04 AC 117 ms
41,652 KB
testcase_05 AC 117 ms
41,432 KB
testcase_06 AC 121 ms
41,036 KB
testcase_07 AC 101 ms
41,688 KB
testcase_08 AC 105 ms
41,160 KB
testcase_09 AC 107 ms
41,436 KB
testcase_10 AC 118 ms
40,264 KB
testcase_11 AC 121 ms
40,688 KB
testcase_12 AC 120 ms
41,300 KB
testcase_13 AC 118 ms
41,592 KB
testcase_14 AC 108 ms
41,484 KB
testcase_15 AC 120 ms
41,492 KB
testcase_16 AC 102 ms
40,364 KB
testcase_17 AC 120 ms
40,696 KB
testcase_18 AC 124 ms
41,324 KB
testcase_19 AC 118 ms
41,316 KB
testcase_20 AC 117 ms
40,080 KB
testcase_21 AC 108 ms
40,412 KB
testcase_22 AC 113 ms
41,356 KB
testcase_23 AC 115 ms
41,460 KB
testcase_24 AC 119 ms
41,232 KB
testcase_25 AC 116 ms
40,312 KB
testcase_26 AC 117 ms
40,280 KB
testcase_27 AC 111 ms
41,132 KB
testcase_28 AC 104 ms
41,252 KB
testcase_29 AC 119 ms
41,900 KB
testcase_30 AC 113 ms
41,204 KB
testcase_31 AC 111 ms
41,364 KB
testcase_32 AC 117 ms
41,508 KB
testcase_33 AC 123 ms
41,424 KB
testcase_34 AC 120 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Solution{
	static Scanner s=new Scanner(System.in);
	public static void main(String[]__){
		int[] in=Arrays.stream(s.next().split(":")).mapToInt(Integer::parseInt).toArray();
		
		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