結果

問題 No.296 n度寝
ユーザー youthfuldays072youthfuldays072
提出日時 2018-06-22 17:19:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 390 bytes
コンパイル時間 2,540 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-06-30 18:00:56
合計ジャッジ時間 4,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,208 KB
testcase_01 AC 128 ms
53,992 KB
testcase_02 AC 133 ms
54,132 KB
testcase_03 AC 130 ms
54,112 KB
testcase_04 AC 131 ms
54,108 KB
testcase_05 AC 129 ms
54,232 KB
testcase_06 AC 129 ms
53,988 KB
testcase_07 AC 131 ms
54,240 KB
testcase_08 AC 129 ms
53,872 KB
testcase_09 AC 131 ms
53,912 KB
testcase_10 AC 129 ms
54,308 KB
testcase_11 AC 130 ms
54,240 KB
testcase_12 AC 131 ms
54,144 KB
testcase_13 AC 130 ms
53,864 KB
testcase_14 AC 130 ms
53,972 KB
testcase_15 AC 130 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		Main main=new Main();
		main.run();
	}

	void run() {

		Scanner sc=new Scanner(System.in);

		int N=sc.nextInt();
		int H=sc.nextInt();
		int M=sc.nextInt();
		int T=sc.nextInt();

		int time=(N-1)*T;

		int res=H*60+M+time;

		System.out.println((res/60)%24);
		System.out.println(res%60);
	}
}


0