結果

問題 No.296 n度寝
ユーザー springspring
提出日時 2019-06-12 17:53:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-10-11 01:43:07
合計ジャッジ時間 5,245 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 134 ms
41,472 KB
testcase_04 AC 134 ms
41,272 KB
testcase_05 WA -
testcase_06 AC 138 ms
41,196 KB
testcase_07 AC 138 ms
41,104 KB
testcase_08 WA -
testcase_09 AC 135 ms
41,376 KB
testcase_10 AC 135 ms
41,720 KB
testcase_11 AC 137 ms
41,596 KB
testcase_12 WA -
testcase_13 AC 135 ms
41,384 KB
testcase_14 AC 134 ms
41,396 KB
testcase_15 AC 134 ms
41,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int H = sc.nextInt();
		int M = sc.nextInt();
		int T = sc.nextInt();
		sc.close();
		int sleepMin = (N-1)*T;
		M = (M+sleepMin)%60;
		int sleepHour = ((M+sleepMin)/60);
		H = (H+sleepHour)%24;
		System.out.println(H);
		System.out.println(M);

	}// mainmethod

} // class
0