結果

問題 No.525 二度寝の季節
ユーザー Amanita2016Amanita2016
提出日時 2017-06-27 17:10:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 1,000 ms
コード長 610 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 76,552 KB
実行使用メモリ 55,672 KB
最終ジャッジ日時 2024-10-04 11:38:18
合計ジャッジ時間 8,705 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
55,200 KB
testcase_01 AC 158 ms
55,332 KB
testcase_02 AC 139 ms
55,168 KB
testcase_03 AC 155 ms
55,204 KB
testcase_04 AC 154 ms
55,388 KB
testcase_05 AC 155 ms
54,996 KB
testcase_06 AC 154 ms
55,336 KB
testcase_07 AC 160 ms
55,392 KB
testcase_08 AC 158 ms
55,188 KB
testcase_09 AC 159 ms
55,672 KB
testcase_10 AC 157 ms
55,284 KB
testcase_11 AC 168 ms
55,284 KB
testcase_12 AC 175 ms
55,152 KB
testcase_13 AC 169 ms
55,276 KB
testcase_14 AC 141 ms
54,828 KB
testcase_15 AC 165 ms
55,176 KB
testcase_16 AC 145 ms
55,252 KB
testcase_17 AC 159 ms
55,056 KB
testcase_18 AC 160 ms
55,396 KB
testcase_19 AC 149 ms
55,024 KB
testcase_20 AC 165 ms
55,376 KB
testcase_21 AC 163 ms
55,024 KB
testcase_22 AC 154 ms
55,164 KB
testcase_23 AC 157 ms
55,300 KB
testcase_24 AC 153 ms
55,364 KB
testcase_25 AC 142 ms
55,152 KB
testcase_26 AC 143 ms
54,736 KB
testcase_27 AC 154 ms
54,892 KB
testcase_28 AC 149 ms
55,272 KB
testcase_29 AC 152 ms
55,308 KB
testcase_30 AC 157 ms
55,164 KB
testcase_31 AC 143 ms
54,740 KB
testcase_32 AC 160 ms
55,284 KB
testcase_33 AC 155 ms
55,180 KB
testcase_34 AC 140 ms
54,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		@SuppressWarnings("resource")
		Scanner sc =  new Scanner(System.in);
		String moment = sc.nextLine();
		String[] spl = moment.split(":");
		int hour = Integer.parseInt(spl[0]);
		int minu = Integer.parseInt(spl[1]);
		minu+=5;
		if(minu >= 60){
			minu-=60;
			hour++;
		}
		hour%=24;
		String[] prefix = {"",""};
		if(hour < 10){
			prefix[0] = "0";
		}
		if(minu < 10){
			prefix[1] = "0";
		}
		System.out.println(prefix[0] + hour + ":" + prefix[1] + minu);
	}

}
0