結果

問題 No.525 二度寝の季節
ユーザー samplelpmassamplelpmas
提出日時 2017-06-11 21:44:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 516 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 75,424 KB
実行使用メモリ 54,160 KB
最終ジャッジ日時 2024-09-24 16:35:41
合計ジャッジ時間 6,869 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,048 KB
testcase_01 AC 116 ms
53,980 KB
testcase_02 AC 118 ms
54,064 KB
testcase_03 AC 105 ms
53,316 KB
testcase_04 AC 119 ms
53,964 KB
testcase_05 AC 119 ms
54,008 KB
testcase_06 AC 120 ms
54,116 KB
testcase_07 AC 115 ms
54,120 KB
testcase_08 AC 105 ms
52,724 KB
testcase_09 AC 118 ms
54,060 KB
testcase_10 AC 119 ms
54,020 KB
testcase_11 AC 118 ms
53,884 KB
testcase_12 AC 117 ms
54,144 KB
testcase_13 AC 115 ms
53,952 KB
testcase_14 AC 102 ms
52,836 KB
testcase_15 AC 117 ms
54,052 KB
testcase_16 AC 114 ms
53,968 KB
testcase_17 AC 116 ms
53,920 KB
testcase_18 AC 114 ms
53,852 KB
testcase_19 AC 115 ms
54,160 KB
testcase_20 AC 114 ms
53,840 KB
testcase_21 AC 120 ms
54,156 KB
testcase_22 AC 105 ms
52,968 KB
testcase_23 AC 120 ms
54,076 KB
testcase_24 AC 120 ms
53,972 KB
testcase_25 AC 121 ms
53,808 KB
testcase_26 AC 122 ms
53,720 KB
testcase_27 AC 116 ms
53,940 KB
testcase_28 AC 117 ms
53,860 KB
testcase_29 AC 117 ms
54,056 KB
testcase_30 AC 115 ms
54,120 KB
testcase_31 AC 106 ms
52,956 KB
testcase_32 AC 114 ms
53,884 KB
testcase_33 AC 115 ms
54,044 KB
testcase_34 AC 123 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String[] input = sc.next().split(":");
        int hour = Integer.parseInt(input[0]);
        int minute = Integer.parseInt(input[1]);

        minute += 5;

        if (minute >= 60) {
            hour++;
            minute -= 60;
        }

        if (hour >= 24) {
            hour %= 24;
        }

        System.out.printf("%02d:%02d", hour, minute);

    }

}
0