結果

問題 No.525 二度寝の季節
ユーザー FVRChanFVRChan
提出日時 2017-10-03 09:46:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 1,000 ms
コード長 523 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 76,696 KB
実行使用メモリ 55,040 KB
最終ジャッジ日時 2024-11-16 05:28:56
合計ジャッジ時間 9,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
54,820 KB
testcase_01 AC 161 ms
54,572 KB
testcase_02 AC 161 ms
54,572 KB
testcase_03 AC 163 ms
54,632 KB
testcase_04 AC 166 ms
54,896 KB
testcase_05 AC 164 ms
54,728 KB
testcase_06 AC 164 ms
54,692 KB
testcase_07 AC 164 ms
54,724 KB
testcase_08 AC 164 ms
54,612 KB
testcase_09 AC 164 ms
55,032 KB
testcase_10 AC 163 ms
54,608 KB
testcase_11 AC 164 ms
54,900 KB
testcase_12 AC 167 ms
54,856 KB
testcase_13 AC 163 ms
54,848 KB
testcase_14 AC 163 ms
55,040 KB
testcase_15 AC 163 ms
54,948 KB
testcase_16 AC 171 ms
54,872 KB
testcase_17 AC 161 ms
54,760 KB
testcase_18 AC 166 ms
54,748 KB
testcase_19 AC 162 ms
54,704 KB
testcase_20 AC 163 ms
54,848 KB
testcase_21 AC 166 ms
54,948 KB
testcase_22 AC 167 ms
54,656 KB
testcase_23 AC 161 ms
54,652 KB
testcase_24 AC 162 ms
54,632 KB
testcase_25 AC 161 ms
54,712 KB
testcase_26 AC 165 ms
54,736 KB
testcase_27 AC 169 ms
54,604 KB
testcase_28 AC 164 ms
54,624 KB
testcase_29 AC 167 ms
54,880 KB
testcase_30 AC 166 ms
54,900 KB
testcase_31 AC 167 ms
54,960 KB
testcase_32 AC 168 ms
54,616 KB
testcase_33 AC 166 ms
54,732 KB
testcase_34 AC 166 ms
54,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		String time[]=sc.nextLine().split(":");
		int h=Integer.parseInt(time[0]);
		int m=Integer.parseInt(time[1]);
		m+=5;
		if(m>=60){
			m-=60;
			h++;
			if(h==24){
				h-=24;
			}
		}
		time[0]=String.valueOf(h);
		time[1]=String.valueOf(m);
		for(int i=0;i<time.length;i++){
			if(time[i].length()==1)time[i]=0+time[i];
		}System.out.println(time[0]+":"+time[1]);
	}
}
0