結果

問題 No.296 n度寝
ユーザー kuramubonnkuramubonn
提出日時 2023-02-02 09:54:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 309 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 76,516 KB
実行使用メモリ 42,504 KB
最終ジャッジ日時 2024-07-02 00:22:49
合計ジャッジ時間 5,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
42,264 KB
testcase_01 AC 156 ms
41,964 KB
testcase_02 AC 156 ms
42,264 KB
testcase_03 AC 157 ms
42,056 KB
testcase_04 AC 154 ms
42,252 KB
testcase_05 AC 158 ms
42,420 KB
testcase_06 AC 157 ms
42,108 KB
testcase_07 AC 157 ms
42,184 KB
testcase_08 AC 154 ms
42,504 KB
testcase_09 AC 154 ms
42,216 KB
testcase_10 AC 157 ms
42,140 KB
testcase_11 AC 156 ms
42,164 KB
testcase_12 AC 156 ms
42,224 KB
testcase_13 AC 157 ms
42,196 KB
testcase_14 AC 155 ms
42,420 KB
testcase_15 AC 157 ms
42,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt() , h = sc.nextInt() , m = sc.nextInt() , t = sc.nextInt();
		m +=  t * (n - 1);
		h += m / 60;
		h = h % 24;
		m = m % 60;
		System.out.print(h + "\n" + m + "\n");
	}
}
0