結果

問題 No.296 n度寝
ユーザー jimanojimano
提出日時 2018-01-20 15:59:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 697 bytes
コンパイル時間 3,056 ms
コンパイル使用メモリ 73,816 KB
実行使用メモリ 37,060 KB
最終ジャッジ日時 2024-06-07 04:18:01
合計ジャッジ時間 4,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,720 KB
testcase_01 AC 48 ms
36,556 KB
testcase_02 AC 47 ms
36,492 KB
testcase_03 AC 49 ms
36,752 KB
testcase_04 AC 48 ms
36,792 KB
testcase_05 AC 49 ms
36,716 KB
testcase_06 AC 48 ms
36,852 KB
testcase_07 AC 48 ms
36,460 KB
testcase_08 AC 48 ms
36,856 KB
testcase_09 AC 48 ms
36,964 KB
testcase_10 AC 48 ms
37,012 KB
testcase_11 AC 49 ms
37,060 KB
testcase_12 AC 50 ms
36,864 KB
testcase_13 AC 50 ms
36,788 KB
testcase_14 AC 49 ms
36,720 KB
testcase_15 AC 49 ms
36,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.time.LocalTime;


public class No0296 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in));) {
			String[] str = br.readLine().split(" ");
			int n = Integer.parseInt(str[0]);
			int h = Integer.parseInt(str[1]);
			int m = Integer.parseInt(str[2]);
			int t = Integer.parseInt(str[3]);

			LocalTime time = LocalTime.of(h, m).plusMinutes((n - 1) * t);

			System.out.println(time.getHour());
			System.out.println(time.getMinute());
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0