結果

問題 No.525 二度寝の季節
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 17:36:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 1,000 ms
コード長 588 bytes
コンパイル時間 4,819 ms
コンパイル使用メモリ 76,620 KB
実行使用メモリ 55,200 KB
最終ジャッジ日時 2024-09-13 11:08:08
合計ジャッジ時間 11,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
54,552 KB
testcase_01 AC 201 ms
54,820 KB
testcase_02 AC 201 ms
54,752 KB
testcase_03 AC 211 ms
54,820 KB
testcase_04 AC 205 ms
54,908 KB
testcase_05 AC 211 ms
54,808 KB
testcase_06 AC 208 ms
54,680 KB
testcase_07 AC 211 ms
54,956 KB
testcase_08 AC 210 ms
54,776 KB
testcase_09 AC 212 ms
54,864 KB
testcase_10 AC 211 ms
54,760 KB
testcase_11 AC 210 ms
54,796 KB
testcase_12 AC 217 ms
55,012 KB
testcase_13 AC 200 ms
54,804 KB
testcase_14 AC 204 ms
54,892 KB
testcase_15 AC 212 ms
54,780 KB
testcase_16 AC 210 ms
55,092 KB
testcase_17 AC 212 ms
54,960 KB
testcase_18 AC 212 ms
54,980 KB
testcase_19 AC 210 ms
54,984 KB
testcase_20 AC 204 ms
54,964 KB
testcase_21 AC 202 ms
55,108 KB
testcase_22 AC 214 ms
54,868 KB
testcase_23 AC 215 ms
54,872 KB
testcase_24 AC 201 ms
54,904 KB
testcase_25 AC 213 ms
54,792 KB
testcase_26 AC 202 ms
55,120 KB
testcase_27 AC 213 ms
55,200 KB
testcase_28 AC 210 ms
54,828 KB
testcase_29 AC 201 ms
54,908 KB
testcase_30 AC 210 ms
54,936 KB
testcase_31 AC 202 ms
54,888 KB
testcase_32 AC 202 ms
54,916 KB
testcase_33 AC 209 ms
54,832 KB
testcase_34 AC 198 ms
54,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.text.SimpleDateFormat;
import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		Calendar cl = Calendar.getInstance();
		String s = sc.next();
		int h = Integer.parseInt(s.charAt(0)==0?s.substring(1,2):s.substring(0,2));
		int m = Integer.parseInt(s.charAt(3)==0?s.substring(4,5):s.substring(3,5));
		cl.set(Calendar.HOUR_OF_DAY, h);
		cl.set(Calendar.MINUTE, m);
		cl.add(Calendar.MINUTE, 5);
		SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
		System.out.println(sdf.format(cl.getTime()));
		
		
	}
}
0