結果

問題 No.296 n度寝
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 15:23:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 336 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 73,784 KB
実行使用メモリ 41,264 KB
最終ジャッジ日時 2024-10-13 13:17:37
合計ジャッジ時間 4,688 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,608 KB
testcase_01 AC 128 ms
41,264 KB
testcase_02 AC 127 ms
41,244 KB
testcase_03 AC 126 ms
41,128 KB
testcase_04 AC 109 ms
40,072 KB
testcase_05 AC 111 ms
39,952 KB
testcase_06 AC 112 ms
39,932 KB
testcase_07 AC 126 ms
41,128 KB
testcase_08 AC 128 ms
41,256 KB
testcase_09 AC 126 ms
40,912 KB
testcase_10 AC 127 ms
41,104 KB
testcase_11 AC 123 ms
41,156 KB
testcase_12 AC 121 ms
40,984 KB
testcase_13 AC 112 ms
39,924 KB
testcase_14 AC 128 ms
40,708 KB
testcase_15 AC 130 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int h = sc.nextInt();
		int m = sc.nextInt();
		int t = sc.nextInt();
		
		long time = (h*60) + m + (t*(n-1));
		System.out.println((time/60)%24);
		System.out.println(time%60);
	}
}
0