結果

問題 No.525 二度寝の季節
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-17 23:01:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 92 ms / 1,000 ms
コード長 734 bytes
コンパイル時間 3,410 ms
コンパイル使用メモリ 79,892 KB
実行使用メモリ 51,372 KB
最終ジャッジ日時 2024-11-18 07:39:42
合計ジャッジ時間 7,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
51,372 KB
testcase_01 AC 72 ms
50,992 KB
testcase_02 AC 69 ms
51,160 KB
testcase_03 AC 73 ms
51,252 KB
testcase_04 AC 75 ms
50,904 KB
testcase_05 AC 71 ms
51,180 KB
testcase_06 AC 81 ms
51,220 KB
testcase_07 AC 71 ms
51,192 KB
testcase_08 AC 70 ms
51,132 KB
testcase_09 AC 80 ms
51,096 KB
testcase_10 AC 72 ms
51,088 KB
testcase_11 AC 71 ms
51,172 KB
testcase_12 AC 72 ms
51,152 KB
testcase_13 AC 77 ms
51,072 KB
testcase_14 AC 73 ms
50,912 KB
testcase_15 AC 82 ms
51,200 KB
testcase_16 AC 74 ms
51,132 KB
testcase_17 AC 73 ms
51,144 KB
testcase_18 AC 82 ms
51,140 KB
testcase_19 AC 73 ms
51,092 KB
testcase_20 AC 70 ms
51,192 KB
testcase_21 AC 74 ms
51,084 KB
testcase_22 AC 82 ms
51,164 KB
testcase_23 AC 92 ms
51,308 KB
testcase_24 AC 80 ms
51,344 KB
testcase_25 AC 83 ms
51,140 KB
testcase_26 AC 72 ms
51,288 KB
testcase_27 AC 70 ms
51,200 KB
testcase_28 AC 82 ms
50,784 KB
testcase_29 AC 75 ms
51,044 KB
testcase_30 AC 68 ms
50,864 KB
testcase_31 AC 72 ms
51,040 KB
testcase_32 AC 75 ms
50,824 KB
testcase_33 AC 74 ms
51,116 KB
testcase_34 AC 74 ms
51,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class No525{
    public static void main(String[] args) throws IOException{
        String[] time = new BufferedReader(new InputStreamReader(System.in)).readLine().split(":");
        int hour = Integer.parseInt(time[0]);
        int minute = Integer.parseInt(time[1]);
        secondGetupTime(hour, minute);
    }
    
    public static void secondGetupTime(int a, int b){
        b += 5;
        if (b/60 != 0) a++;
        b %= 60;
        a %= 24;
        if(a< 10 && b < 10)  System.out.println("0" + a + ":" + "0" + b); 
        else if(a < 10)  System.out.println("0"+ a + ":" + b);
        else if(b < 10)  System.out.println(a + ":" + "0" + b);
        else  System.out.println(a + ":" + b);
    }
}
0