結果

問題 No.296 n度寝
ユーザー 8130Tsk8130Tsk
提出日時 2015-11-15 13:00:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 364 bytes
コンパイル時間 4,149 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-07-06 22:30:51
合計ジャッジ時間 6,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,512 KB
testcase_01 AC 136 ms
41,284 KB
testcase_02 AC 135 ms
41,060 KB
testcase_03 AC 134 ms
41,012 KB
testcase_04 AC 132 ms
40,896 KB
testcase_05 AC 135 ms
40,888 KB
testcase_06 AC 135 ms
41,412 KB
testcase_07 AC 135 ms
41,056 KB
testcase_08 AC 134 ms
41,040 KB
testcase_09 AC 136 ms
41,596 KB
testcase_10 AC 137 ms
41,048 KB
testcase_11 AC 135 ms
41,096 KB
testcase_12 AC 135 ms
41,172 KB
testcase_13 AC 135 ms
41,024 KB
testcase_14 AC 136 ms
41,228 KB
testcase_15 AC 134 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No296 {
	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();

		int overTime = t*(n-1);
		h+=(overTime+m)/60;
		h%=24;
		m+=overTime;
		m%=60;
		
		System.out.println(h);
		System.out.println(m);
	}
}
0