結果

問題 No.296 n度寝
ユーザー misk703misk703
提出日時 2018-05-02 08:56:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 421 bytes
コンパイル時間 3,071 ms
コンパイル使用メモリ 77,140 KB
実行使用メモリ 55,160 KB
最終ジャッジ日時 2024-06-28 00:18:01
合計ジャッジ時間 5,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 131 ms
42,404 KB
testcase_04 AC 125 ms
41,708 KB
testcase_05 AC 139 ms
42,352 KB
testcase_06 AC 139 ms
42,204 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 146 ms
42,120 KB
testcase_11 AC 136 ms
42,328 KB
testcase_12 WA -
testcase_13 AC 126 ms
42,232 KB
testcase_14 AC 126 ms
42,056 KB
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class cade {

    public static void main(String[] args) {
	Scanner s = new Scanner(System.in);
	int[] A = new int[4];

	for(int i=0;i<4;i++){
	    A[i] = Integer.parseInt(s.next());
	}

	int h = A[1] * 60;

	int maxmin = h + A[2];

	for(int i=0;i<A[0] -1 ;i++){
	    maxmin += A[3];
	}
	int ansh = maxmin / 60;
	int ansm = maxmin % 60;
	System.out.println(ansh + "\n" + ansm);
    }

}
0