結果

問題 No.296 n度寝
ユーザー 8130Tsk8130Tsk
提出日時 2015-11-15 12:45:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 363 bytes
コンパイル時間 3,430 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 56,144 KB
最終ジャッジ日時 2024-09-13 15:00:00
合計ジャッジ時間 6,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 131 ms
54,112 KB
testcase_04 AC 116 ms
52,904 KB
testcase_05 AC 117 ms
52,728 KB
testcase_06 AC 130 ms
53,844 KB
testcase_07 AC 128 ms
54,088 KB
testcase_08 AC 131 ms
54,004 KB
testcase_09 WA -
testcase_10 AC 125 ms
53,884 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 116 ms
52,716 KB
testcase_14 AC 129 ms
54,088 KB
testcase_15 AC 130 ms
53,976 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/60;
		h%=24;
		m+=overTime;
		m%=60;
		
		System.out.println(h);
		System.out.println(m);				
	}
}
0