結果

問題 No.525 二度寝の季節
ユーザー yuya178yuya178
提出日時 2017-06-09 22:29:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 630 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 54,464 KB
最終ジャッジ日時 2024-09-22 15:13:07
合計ジャッジ時間 8,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,104 KB
testcase_01 AC 125 ms
54,208 KB
testcase_02 AC 125 ms
54,028 KB
testcase_03 AC 127 ms
54,036 KB
testcase_04 AC 129 ms
54,016 KB
testcase_05 AC 127 ms
54,284 KB
testcase_06 AC 127 ms
54,212 KB
testcase_07 AC 131 ms
54,044 KB
testcase_08 AC 128 ms
54,076 KB
testcase_09 AC 129 ms
53,752 KB
testcase_10 AC 129 ms
54,288 KB
testcase_11 AC 129 ms
53,768 KB
testcase_12 AC 127 ms
54,072 KB
testcase_13 AC 112 ms
52,960 KB
testcase_14 AC 127 ms
54,012 KB
testcase_15 AC 127 ms
54,024 KB
testcase_16 AC 126 ms
53,940 KB
testcase_17 AC 126 ms
54,180 KB
testcase_18 AC 127 ms
54,132 KB
testcase_19 AC 126 ms
54,276 KB
testcase_20 AC 129 ms
54,108 KB
testcase_21 AC 128 ms
54,092 KB
testcase_22 AC 128 ms
54,244 KB
testcase_23 AC 127 ms
54,016 KB
testcase_24 AC 128 ms
54,172 KB
testcase_25 AC 130 ms
54,308 KB
testcase_26 AC 126 ms
53,928 KB
testcase_27 AC 130 ms
54,172 KB
testcase_28 AC 127 ms
54,124 KB
testcase_29 AC 126 ms
54,276 KB
testcase_30 AC 128 ms
54,464 KB
testcase_31 AC 127 ms
54,268 KB
testcase_32 AC 129 ms
54,216 KB
testcase_33 AC 128 ms
53,992 KB
testcase_34 AC 129 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

        String s = sc.next();

        String h = s.substring(0,2);
        String m = s.substring(3,5);

        int hh = Integer.parseInt(h);
        int mm = Integer.parseInt(m);

        int mf=0;

        if(mm<=54){
            mm = mm+5;
        }
        else{
            mm = mm+5-60;
            mf = 1;
        }

        if(mf==1){
            hh = hh+1;
            if(hh==24){
                hh =0;
            }
        }

        System.out.println(String.format("%02d:%02d",hh,mm));



	}
}
0