結果

問題 No.296 n度寝
ユーザー YOSHIYOSHI
提出日時 2021-03-10 00:02:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 559 bytes
コンパイル時間 4,457 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 37,004 KB
最終ジャッジ日時 2024-10-11 12:39:28
合計ジャッジ時間 6,060 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,004 KB
testcase_01 AC 53 ms
36,844 KB
testcase_02 AC 54 ms
36,776 KB
testcase_03 AC 52 ms
36,888 KB
testcase_04 AC 52 ms
36,864 KB
testcase_05 AC 53 ms
36,896 KB
testcase_06 AC 54 ms
36,860 KB
testcase_07 AC 53 ms
36,844 KB
testcase_08 AC 53 ms
36,896 KB
testcase_09 AC 53 ms
36,476 KB
testcase_10 AC 54 ms
36,904 KB
testcase_11 AC 53 ms
36,744 KB
testcase_12 AC 53 ms
36,892 KB
testcase_13 AC 55 ms
36,688 KB
testcase_14 AC 53 ms
36,660 KB
testcase_15 AC 52 ms
36,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000296_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] arr = br.readLine().split(" ");
		int n = Integer.parseInt(arr[0]);
		int h = Integer.parseInt(arr[1]);
		int m = Integer.parseInt(arr[2]);
		int t = Integer.parseInt(arr[3]);

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