結果

問題 No.525 二度寝の季節
ユーザー fjafjafjafjafjafja
提出日時 2017-07-30 10:20:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 101 ms / 1,000 ms
コード長 718 bytes
コンパイル時間 3,586 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 39,956 KB
最終ジャッジ日時 2024-10-10 22:30:11
合計ジャッジ時間 7,870 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
38,096 KB
testcase_01 AC 95 ms
39,572 KB
testcase_02 AC 88 ms
39,768 KB
testcase_03 AC 86 ms
38,096 KB
testcase_04 AC 85 ms
38,060 KB
testcase_05 AC 83 ms
38,144 KB
testcase_06 AC 82 ms
38,060 KB
testcase_07 AC 83 ms
38,372 KB
testcase_08 AC 88 ms
39,840 KB
testcase_09 AC 86 ms
39,908 KB
testcase_10 AC 84 ms
38,312 KB
testcase_11 AC 86 ms
38,236 KB
testcase_12 AC 88 ms
39,704 KB
testcase_13 AC 87 ms
39,712 KB
testcase_14 AC 97 ms
39,532 KB
testcase_15 AC 86 ms
38,264 KB
testcase_16 AC 88 ms
39,400 KB
testcase_17 AC 82 ms
39,548 KB
testcase_18 AC 82 ms
37,880 KB
testcase_19 AC 82 ms
39,404 KB
testcase_20 AC 83 ms
38,024 KB
testcase_21 AC 81 ms
37,712 KB
testcase_22 AC 80 ms
37,880 KB
testcase_23 AC 85 ms
39,692 KB
testcase_24 AC 87 ms
38,152 KB
testcase_25 AC 88 ms
39,640 KB
testcase_26 AC 101 ms
39,824 KB
testcase_27 AC 87 ms
39,908 KB
testcase_28 AC 83 ms
38,008 KB
testcase_29 AC 93 ms
37,732 KB
testcase_30 AC 83 ms
38,144 KB
testcase_31 AC 86 ms
39,680 KB
testcase_32 AC 92 ms
39,564 KB
testcase_33 AC 85 ms
38,280 KB
testcase_34 AC 89 ms
39,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class N525 {

	public static void main(String[] args)throws IOException
	{
		BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
		String str=br.readLine();
		String[] s=str.split(":");
		Integer[] i=new Integer[2];
		for(int j=0;j<2;j++)
		{
			i[j]=Integer.parseInt(s[j]);
		}
		i[1]+=5;
		if(i[1]>=60)
		{
			i[1]-=60;
			i[0]+=1;
			if(i[0]>=24)
			{
				i[0]-=24;
			}
		}
		String[] ss=new String[2];
		for(int j=0;j<2;j++)
		{
			int e=0;
			e=(i[j]<10)?1:0;
			ss[j]=String.valueOf(i[j]);
			if(e==1){ss[j]="0"+ss[j];}
		}
		System.out.println(ss[0]+":"+ss[1]);


	}

}
0