結果

問題 No.525 二度寝の季節
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-18 16:16:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 1,000 ms
コード長 606 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 77,048 KB
実行使用メモリ 55,236 KB
最終ジャッジ日時 2024-10-01 20:08:27
合計ジャッジ時間 8,687 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,792 KB
testcase_01 AC 150 ms
55,080 KB
testcase_02 AC 150 ms
54,916 KB
testcase_03 AC 157 ms
54,900 KB
testcase_04 AC 155 ms
54,988 KB
testcase_05 AC 154 ms
55,204 KB
testcase_06 AC 150 ms
55,236 KB
testcase_07 AC 152 ms
55,004 KB
testcase_08 AC 153 ms
54,772 KB
testcase_09 AC 148 ms
54,772 KB
testcase_10 AC 151 ms
54,892 KB
testcase_11 AC 154 ms
54,992 KB
testcase_12 AC 151 ms
54,792 KB
testcase_13 AC 151 ms
54,992 KB
testcase_14 AC 157 ms
54,984 KB
testcase_15 AC 152 ms
55,056 KB
testcase_16 AC 152 ms
54,892 KB
testcase_17 AC 151 ms
54,752 KB
testcase_18 AC 147 ms
54,868 KB
testcase_19 AC 150 ms
54,732 KB
testcase_20 AC 154 ms
55,068 KB
testcase_21 AC 161 ms
54,776 KB
testcase_22 AC 157 ms
54,684 KB
testcase_23 AC 152 ms
54,988 KB
testcase_24 AC 155 ms
54,900 KB
testcase_25 AC 138 ms
54,636 KB
testcase_26 AC 153 ms
54,916 KB
testcase_27 AC 151 ms
54,868 KB
testcase_28 AC 152 ms
54,672 KB
testcase_29 AC 146 ms
54,840 KB
testcase_30 AC 149 ms
54,980 KB
testcase_31 AC 148 ms
54,588 KB
testcase_32 AC 151 ms
55,092 KB
testcase_33 AC 137 ms
54,660 KB
testcase_34 AC 147 ms
54,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String T = sc.next();
    String[] s = T.split(":");
    String hh = s[0];
    String mm = s[1];
    int ansh = Integer.parseInt(hh);
    int ansm = Integer.parseInt(mm) + 5;
    if(ansm >= 60) {
      ansh++;
      ansm -= 60;
    }
    if(ansh >= 24) ansh -= 24;
    String anshh = String.valueOf(ansh);
    String ansmm = String.valueOf(ansm);
    if(ansh < 10) anshh = "0" + anshh; 
    if(ansm < 10) ansmm = "0" + ansmm; 
    System.out.println(anshh + ":" + ansmm);
  }
}
0