結果

問題 No.296 n度寝
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-23 21:13:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 384 bytes
コンパイル時間 3,691 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 54,616 KB
最終ジャッジ日時 2024-11-14 04:29:33
合計ジャッジ時間 6,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,028 KB
testcase_01 AC 135 ms
53,872 KB
testcase_02 AC 134 ms
53,952 KB
testcase_03 AC 131 ms
53,756 KB
testcase_04 AC 132 ms
54,092 KB
testcase_05 AC 141 ms
54,004 KB
testcase_06 AC 134 ms
54,004 KB
testcase_07 AC 132 ms
53,992 KB
testcase_08 AC 134 ms
54,112 KB
testcase_09 AC 132 ms
54,060 KB
testcase_10 AC 134 ms
54,128 KB
testcase_11 AC 139 ms
53,780 KB
testcase_12 AC 134 ms
54,040 KB
testcase_13 AC 136 ms
54,616 KB
testcase_14 AC 135 ms
54,016 KB
testcase_15 AC 132 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No296 {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int[] x = new int[4];
		for (int i = 0 ; i< x.length ; i++)
			x[i] = sc.nextInt();
		x[2] = x[2] + ((x[0] - 1) * x[3]);
		x[1] = (x[2] / 60) + x[1];
		x[1] %= 24;
		x[2] %= 60;
		System.out.println(x[1]);
		System.out.println(x[2]);
		sc.close();
	}
}
0