結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,528 KB
testcase_01 WA -
testcase_02 AC 105 ms
53,408 KB
testcase_03 AC 117 ms
53,932 KB
testcase_04 AC 118 ms
54,280 KB
testcase_05 AC 120 ms
54,200 KB
testcase_06 AC 119 ms
53,992 KB
testcase_07 AC 106 ms
53,000 KB
testcase_08 AC 115 ms
54,240 KB
testcase_09 AC 115 ms
54,248 KB
testcase_10 AC 101 ms
52,764 KB
testcase_11 AC 116 ms
54,260 KB
testcase_12 AC 117 ms
54,512 KB
testcase_13 AC 115 ms
54,108 KB
testcase_14 AC 114 ms
54,248 KB
testcase_15 AC 107 ms
53,016 KB
testcase_16 AC 115 ms
54,004 KB
testcase_17 AC 106 ms
52,896 KB
testcase_18 AC 117 ms
54,104 KB
testcase_19 AC 103 ms
53,072 KB
testcase_20 AC 111 ms
54,024 KB
testcase_21 AC 117 ms
53,884 KB
testcase_22 AC 109 ms
52,848 KB
testcase_23 AC 119 ms
54,224 KB
testcase_24 AC 106 ms
52,864 KB
testcase_25 AC 122 ms
54,288 KB
testcase_26 AC 122 ms
53,964 KB
testcase_27 AC 112 ms
54,264 KB
testcase_28 AC 105 ms
53,028 KB
testcase_29 AC 104 ms
52,956 KB
testcase_30 AC 118 ms
53,992 KB
testcase_31 AC 101 ms
52,844 KB
testcase_32 WA -
testcase_33 AC 115 ms
54,108 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

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) {
            minute %= 24;
        }

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

    }

}
0