結果

問題 No.525 二度寝の季節
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-04-25 00:09:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 538 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 54,424 KB
最終ジャッジ日時 2024-06-27 20:42:29
合計ジャッジ時間 7,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,744 KB
testcase_01 AC 127 ms
53,828 KB
testcase_02 AC 127 ms
53,972 KB
testcase_03 AC 130 ms
54,028 KB
testcase_04 AC 127 ms
53,684 KB
testcase_05 AC 130 ms
54,196 KB
testcase_06 AC 123 ms
54,000 KB
testcase_07 AC 127 ms
54,232 KB
testcase_08 AC 128 ms
53,872 KB
testcase_09 AC 127 ms
54,000 KB
testcase_10 AC 126 ms
53,896 KB
testcase_11 AC 120 ms
52,880 KB
testcase_12 AC 121 ms
53,800 KB
testcase_13 AC 119 ms
53,748 KB
testcase_14 AC 124 ms
54,028 KB
testcase_15 AC 127 ms
54,076 KB
testcase_16 AC 126 ms
54,116 KB
testcase_17 AC 126 ms
53,956 KB
testcase_18 AC 111 ms
53,060 KB
testcase_19 AC 121 ms
53,828 KB
testcase_20 AC 122 ms
53,956 KB
testcase_21 AC 116 ms
54,212 KB
testcase_22 AC 123 ms
54,424 KB
testcase_23 AC 128 ms
53,868 KB
testcase_24 AC 121 ms
53,968 KB
testcase_25 AC 126 ms
53,984 KB
testcase_26 AC 123 ms
54,388 KB
testcase_27 AC 127 ms
53,940 KB
testcase_28 AC 126 ms
53,844 KB
testcase_29 AC 128 ms
54,060 KB
testcase_30 AC 128 ms
53,704 KB
testcase_31 AC 124 ms
54,152 KB
testcase_32 AC 128 ms
54,040 KB
testcase_33 AC 125 ms
53,876 KB
testcase_34 AC 108 ms
53,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String t = in.next();

        int h = Integer.parseInt(t.substring(0,2));
        int m = Integer.parseInt(t.substring(3,5));

        if(m >= 55) {
            m = m + 5 - 60;
            if(h == 23)
                h = 0;
            else
                h++;
        } else {
            m += 5;
        }

        String ans = String.format("%02d:%02d", h, m);
        System.out.println(ans);
    }
}
0