結果

問題 No.525 二度寝の季節
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-06-10 02:07:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 226 ms / 1,000 ms
コード長 701 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 55,984 KB
最終ジャッジ日時 2024-09-22 21:49:51
合計ジャッジ時間 10,551 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
55,124 KB
testcase_01 AC 201 ms
55,304 KB
testcase_02 AC 200 ms
55,832 KB
testcase_03 AC 218 ms
55,764 KB
testcase_04 AC 221 ms
55,984 KB
testcase_05 AC 222 ms
55,776 KB
testcase_06 AC 207 ms
55,692 KB
testcase_07 AC 200 ms
55,340 KB
testcase_08 AC 200 ms
55,272 KB
testcase_09 AC 201 ms
55,272 KB
testcase_10 AC 199 ms
55,648 KB
testcase_11 AC 201 ms
55,360 KB
testcase_12 AC 197 ms
55,400 KB
testcase_13 AC 218 ms
55,600 KB
testcase_14 AC 203 ms
55,844 KB
testcase_15 AC 201 ms
55,700 KB
testcase_16 AC 211 ms
55,796 KB
testcase_17 AC 199 ms
55,856 KB
testcase_18 AC 202 ms
55,488 KB
testcase_19 AC 203 ms
55,484 KB
testcase_20 AC 200 ms
55,620 KB
testcase_21 AC 220 ms
55,840 KB
testcase_22 AC 204 ms
55,640 KB
testcase_23 AC 205 ms
55,812 KB
testcase_24 AC 221 ms
55,736 KB
testcase_25 AC 203 ms
55,364 KB
testcase_26 AC 202 ms
55,728 KB
testcase_27 AC 210 ms
55,292 KB
testcase_28 AC 221 ms
55,940 KB
testcase_29 AC 200 ms
55,604 KB
testcase_30 AC 203 ms
55,612 KB
testcase_31 AC 214 ms
55,436 KB
testcase_32 AC 226 ms
55,864 KB
testcase_33 AC 202 ms
55,632 KB
testcase_34 AC 202 ms
55,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        System.out.println(solve(S));
    }
    static int p(String S){
        return Integer.parseInt(S);
    }
    static long second(String S){
        String [] arr = S.split(":");
        int hour = p(arr[0])-9;
        int min = p(arr[1]);
        int t = (hour*60+min)*60*1000;
        return t;
    }
    static String solve(String S){
        long now = second(S);
        long after = now + 300000;
        Date d = new Date();
        d.setTime(after);
        String T = d.toString();
        return T.substring(11,16);
    }
}
0