結果

問題 No.296 n度寝
ユーザー mitsuomitsuo
提出日時 2016-05-05 11:40:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 910 bytes
コンパイル時間 2,438 ms
コンパイル使用メモリ 85,528 KB
実行使用メモリ 51,280 KB
最終ジャッジ日時 2024-07-07 02:46:25
合計ジャッジ時間 5,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
50,740 KB
testcase_01 AC 133 ms
50,716 KB
testcase_02 AC 164 ms
51,232 KB
testcase_03 AC 129 ms
50,920 KB
testcase_04 AC 136 ms
50,660 KB
testcase_05 AC 150 ms
51,276 KB
testcase_06 AC 142 ms
51,104 KB
testcase_07 AC 134 ms
51,184 KB
testcase_08 AC 153 ms
51,276 KB
testcase_09 AC 135 ms
51,280 KB
testcase_10 AC 145 ms
51,236 KB
testcase_11 AC 146 ms
51,116 KB
testcase_12 AC 136 ms
50,996 KB
testcase_13 AC 145 ms
51,136 KB
testcase_14 AC 144 ms
50,716 KB
testcase_15 AC 147 ms
50,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Queue;
import java.util.Scanner;

public class Main {

	final static String d = System.getProperty("line.separator");

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static String solve(List<String> in) {
		Integer N = Integer.valueOf(in.get(0).split(" ")[0]);
		Integer H = Integer.valueOf(in.get(0).split(" ")[1]);
		Integer M = Integer.valueOf(in.get(0).split(" ")[2]);
		Integer T = Integer.valueOf(in.get(0).split(" ")[3]);

		LocalDateTime now = LocalDateTime.of(2016, 1, 1, H, M);
		now = now.plusMinutes((N - 1) * T);

		return now.getHour() + d + now.getMinute();
	}

}
0