結果

問題 No.296 n度寝
ユーザー springspring
提出日時 2019-06-13 10:12:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 441 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 73,972 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-10-12 23:29:49
合計ジャッジ時間 4,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
39,852 KB
testcase_01 AC 111 ms
40,160 KB
testcase_02 AC 125 ms
41,284 KB
testcase_03 AC 122 ms
41,332 KB
testcase_04 AC 118 ms
41,136 KB
testcase_05 AC 121 ms
41,116 KB
testcase_06 AC 118 ms
41,132 KB
testcase_07 AC 110 ms
40,380 KB
testcase_08 AC 127 ms
41,212 KB
testcase_09 AC 125 ms
41,172 KB
testcase_10 AC 108 ms
40,584 KB
testcase_11 AC 105 ms
40,076 KB
testcase_12 AC 116 ms
41,344 KB
testcase_13 AC 119 ms
40,980 KB
testcase_14 AC 123 ms
41,096 KB
testcase_15 AC 108 ms
40,076 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;
		int minutes = (M+sleepMin)%60;
		int sleepHour = ((M+sleepMin)/60);
		H = (H+sleepHour)%24;
		System.out.println(H);
		System.out.println(minutes);
	}// mainmethod

} // class
0