結果

問題 No.296 n度寝
ユーザー YamaKasaYamaKasa
提出日時 2018-05-02 00:54:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 54,168 KB
最終ジャッジ日時 2024-06-28 00:17:26
合計ジャッジ時間 4,503 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,120 KB
testcase_01 AC 122 ms
54,132 KB
testcase_02 WA -
testcase_03 AC 119 ms
53,872 KB
testcase_04 AC 116 ms
53,992 KB
testcase_05 AC 118 ms
54,160 KB
testcase_06 AC 106 ms
52,960 KB
testcase_07 AC 118 ms
53,980 KB
testcase_08 AC 115 ms
54,100 KB
testcase_09 AC 106 ms
52,568 KB
testcase_10 AC 118 ms
53,888 KB
testcase_11 AC 114 ms
53,776 KB
testcase_12 AC 117 ms
54,032 KB
testcase_13 AC 117 ms
54,080 KB
testcase_14 AC 127 ms
54,116 KB
testcase_15 AC 127 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int H = scan.nextInt();
		int M = scan.nextInt();
		int T = scan.nextInt();
		scan.close();

		int t = H * 60 +  M;
		int max = 24 * 60;
		int k = ((N - 1) * T) % max;
		//System.out.println(k);
		int m = 0;
		if(k <= max - t) {
			m = t + k;
		}else {
			m = k - (max - t);
		}
		int ans1 = m / 60;
		int ans2 = m % 60;
		System.out.println(ans1);
		System.out.println(ans2);
	}
}
0