結果

問題 No.296 n度寝
ユーザー garaisigaraisi
提出日時 2017-01-01 15:23:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 1,000 ms
コード長 681 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 43,572 KB
最終ジャッジ日時 2024-07-07 02:52:03
合計ジャッジ時間 5,748 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
43,200 KB
testcase_01 AC 194 ms
42,992 KB
testcase_02 AC 189 ms
43,472 KB
testcase_03 AC 182 ms
43,572 KB
testcase_04 AC 184 ms
43,004 KB
testcase_05 AC 171 ms
43,460 KB
testcase_06 AC 178 ms
43,476 KB
testcase_07 AC 186 ms
43,236 KB
testcase_08 AC 171 ms
43,184 KB
testcase_09 AC 173 ms
43,200 KB
testcase_10 AC 182 ms
43,304 KB
testcase_11 AC 191 ms
43,224 KB
testcase_12 AC 187 ms
43,280 KB
testcase_13 AC 185 ms
43,108 KB
testcase_14 AC 188 ms
43,388 KB
testcase_15 AC 191 ms
43,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Calendar;
import java.util.Date;
import java.util.Scanner;

public class Main {
	public static void main(String args[]){
		Scanner input = new Scanner(System.in);

		int sleeptimes = input.nextInt();
		int hour = input.nextInt();
		int minute = input.nextInt();
		int interval = input.nextInt();

		minute += interval * (sleeptimes-1);

		Calendar c = Calendar.getInstance();
		c.set(Calendar.HOUR_OF_DAY, hour);
		c.set(Calendar.MINUTE,minute);

		Date waketime = c.getTime();

		c.setTime(waketime);

		int wakehour = c.get(Calendar.HOUR_OF_DAY);
		int wakeminute = c.get(Calendar.MINUTE);

		System.out.println(wakehour);
		System.out.println(wakeminute);
	}
}
0