結果

問題 No.296 n度寝
ユーザー ShotaroSuzuShotaroSuzu
提出日時 2020-05-19 19:50:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 1,000 ms
コード長 1,048 bytes
コンパイル時間 3,933 ms
コンパイル使用メモリ 84,308 KB
実行使用メモリ 56,820 KB
最終ジャッジ日時 2024-10-01 22:59:01
合計ジャッジ時間 6,954 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
56,820 KB
testcase_01 AC 155 ms
56,696 KB
testcase_02 AC 150 ms
56,240 KB
testcase_03 AC 141 ms
53,968 KB
testcase_04 AC 139 ms
53,864 KB
testcase_05 AC 139 ms
54,404 KB
testcase_06 AC 138 ms
54,036 KB
testcase_07 AC 150 ms
53,768 KB
testcase_08 AC 168 ms
56,760 KB
testcase_09 AC 143 ms
54,324 KB
testcase_10 AC 138 ms
54,140 KB
testcase_11 AC 138 ms
54,180 KB
testcase_12 AC 142 ms
54,112 KB
testcase_13 AC 144 ms
54,044 KB
testcase_14 AC 144 ms
53,840 KB
testcase_15 AC 139 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.beginner.sleepingnth;

import java.time.LocalTime;
import java.util.Scanner;

public class SleepingNth {

	public static void main(String[] args) {
		new SleepingNth().execute();

	}

	private void execute() {
		SleepingDto dto = read();

		LocalTime wakeUpTime = dto.firstWakeTime;
		for (int i = 1; i < dto.sleepingNum; i++) {
			wakeUpTime = wakeUpTime.plusMinutes(dto.alermInterval);
		}
		System.out.println(wakeUpTime.getHour());
		System.out.println(wakeUpTime.getMinute());
	}

	private SleepingDto read() {
		@SuppressWarnings("resource")
		Scanner sc = new Scanner(System.in);
		return new SleepingDto(sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt());
	}

	private class SleepingDto {
		private int sleepingNum;
		private LocalTime firstWakeTime;
		private int alermInterval;
		private SleepingDto(int sleepingNum, int firstWakeHour, int firstWakeMin, int interval) {
			this.sleepingNum = sleepingNum;
			this.firstWakeTime = LocalTime.of(firstWakeHour, firstWakeMin);
			this.alermInterval = interval;
		}
	}
}
0