結果

問題 No.525 二度寝の季節
ユーザー GrenacheGrenache
提出日時 2017-06-17 07:13:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 682 bytes
コンパイル時間 5,716 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-10-01 09:12:01
合計ジャッジ時間 8,054 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,032 KB
testcase_01 AC 111 ms
41,364 KB
testcase_02 AC 115 ms
41,416 KB
testcase_03 AC 113 ms
41,076 KB
testcase_04 AC 97 ms
40,116 KB
testcase_05 AC 105 ms
41,440 KB
testcase_06 AC 105 ms
41,416 KB
testcase_07 AC 106 ms
41,120 KB
testcase_08 AC 95 ms
40,324 KB
testcase_09 AC 105 ms
40,996 KB
testcase_10 AC 108 ms
41,412 KB
testcase_11 AC 107 ms
41,628 KB
testcase_12 AC 109 ms
41,624 KB
testcase_13 AC 106 ms
41,084 KB
testcase_14 AC 107 ms
41,220 KB
testcase_15 AC 105 ms
40,536 KB
testcase_16 AC 107 ms
41,384 KB
testcase_17 AC 112 ms
41,504 KB
testcase_18 AC 109 ms
41,684 KB
testcase_19 AC 106 ms
41,036 KB
testcase_20 AC 99 ms
40,204 KB
testcase_21 AC 97 ms
40,128 KB
testcase_22 AC 95 ms
40,404 KB
testcase_23 AC 99 ms
40,296 KB
testcase_24 AC 110 ms
41,104 KB
testcase_25 AC 106 ms
40,940 KB
testcase_26 AC 108 ms
40,044 KB
testcase_27 AC 101 ms
40,804 KB
testcase_28 AC 107 ms
40,924 KB
testcase_29 AC 112 ms
41,060 KB
testcase_30 AC 121 ms
41,040 KB
testcase_31 AC 95 ms
39,616 KB
testcase_32 AC 114 ms
41,372 KB
testcase_33 AC 116 ms
41,072 KB
testcase_34 AC 98 ms
40,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder525 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		String[] hm = sc.next().split(":");

		int hh = Integer.parseInt(hm[0]);
		int mm = Integer.parseInt(hm[1]);

		hh = (hh + (mm + 5) / 60) % 24;
		mm = (mm + 5) % 60;

		pr.printf("%02d:%02d\n", hh, mm);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0