結果

問題 No.525 二度寝の季節
ユーザー schwarzahlschwarzahl
提出日時 2017-06-09 22:36:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 79,144 KB
実行使用メモリ 54,908 KB
最終ジャッジ日時 2024-09-22 15:24:10
合計ジャッジ時間 7,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,096 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 128 ms
54,152 KB
testcase_04 AC 130 ms
54,116 KB
testcase_05 AC 131 ms
53,976 KB
testcase_06 AC 129 ms
53,808 KB
testcase_07 AC 113 ms
52,732 KB
testcase_08 AC 127 ms
54,080 KB
testcase_09 AC 115 ms
52,956 KB
testcase_10 AC 127 ms
53,880 KB
testcase_11 AC 127 ms
54,088 KB
testcase_12 AC 126 ms
54,116 KB
testcase_13 AC 129 ms
54,092 KB
testcase_14 AC 128 ms
54,132 KB
testcase_15 AC 124 ms
53,836 KB
testcase_16 AC 128 ms
54,056 KB
testcase_17 AC 129 ms
54,080 KB
testcase_18 AC 129 ms
53,988 KB
testcase_19 AC 129 ms
54,244 KB
testcase_20 AC 129 ms
54,044 KB
testcase_21 AC 129 ms
54,028 KB
testcase_22 AC 129 ms
54,220 KB
testcase_23 AC 129 ms
54,908 KB
testcase_24 AC 129 ms
54,280 KB
testcase_25 AC 131 ms
54,088 KB
testcase_26 AC 130 ms
54,200 KB
testcase_27 AC 131 ms
54,192 KB
testcase_28 AC 130 ms
54,036 KB
testcase_29 AC 130 ms
54,036 KB
testcase_30 AC 130 ms
54,000 KB
testcase_31 AC 128 ms
54,472 KB
testcase_32 AC 127 ms
54,196 KB
testcase_33 AC 130 ms
54,016 KB
testcase_34 AC 129 ms
54,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args){
		Main main = new Main();
		main.solveA();
	}

	private void solveA() {
		Scanner sc = new Scanner(System.in);
		String line = sc.nextLine();
		int h = c2i(line.charAt(0)) * 10 + c2i(line.charAt(1));
		int m = c2i(line.charAt(3)) * 10 + c2i(line.charAt(4));
		m += 5;
		if (m > 60) {
			m -= 60;
			h += 1;
			h = h % 24;
		}
		System.out.printf("%02d:%02d", h, m);
	}

	private int c2i(char c) {
		return c - '0';
	}
}
0