結果

問題 No.296 n度寝
ユーザー yuuki121yuuki121
提出日時 2021-01-06 23:18:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 67 ms / 1,000 ms
コード長 560 bytes
コンパイル時間 2,449 ms
コンパイル使用メモリ 80,684 KB
実行使用メモリ 37,820 KB
最終ジャッジ日時 2024-11-07 12:19:07
合計ジャッジ時間 4,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
37,432 KB
testcase_01 AC 64 ms
37,344 KB
testcase_02 AC 62 ms
37,212 KB
testcase_03 AC 63 ms
37,612 KB
testcase_04 AC 65 ms
37,552 KB
testcase_05 AC 65 ms
37,432 KB
testcase_06 AC 66 ms
37,592 KB
testcase_07 AC 64 ms
37,740 KB
testcase_08 AC 63 ms
36,968 KB
testcase_09 AC 62 ms
37,584 KB
testcase_10 AC 64 ms
37,568 KB
testcase_11 AC 65 ms
37,204 KB
testcase_12 AC 65 ms
37,820 KB
testcase_13 AC 63 ms
37,444 KB
testcase_14 AC 64 ms
37,608 KB
testcase_15 AC 65 ms
37,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Stream;

public class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int[] NHMT = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();

		int n = NHMT[0];
		int h = NHMT[1];
		int m = NHMT[2];
		int t = NHMT[3];

		System.out.println((h + (m + (n - 1) * t) / 60) % 24);
		System.out.println((m + (n - 1) * t) % 60);

	}
}
0