結果

問題 No.296 n度寝
ユーザー misk703misk703
提出日時 2018-05-02 10:51:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 1,000 ms
コード長 537 bytes
コンパイル時間 3,606 ms
コンパイル使用メモリ 86,828 KB
実行使用メモリ 42,392 KB
最終ジャッジ日時 2024-06-28 00:19:00
合計ジャッジ時間 6,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,164 KB
testcase_01 AC 155 ms
42,048 KB
testcase_02 AC 153 ms
42,204 KB
testcase_03 AC 148 ms
42,288 KB
testcase_04 AC 134 ms
41,652 KB
testcase_05 AC 148 ms
42,392 KB
testcase_06 AC 144 ms
41,996 KB
testcase_07 AC 166 ms
42,148 KB
testcase_08 AC 142 ms
41,920 KB
testcase_09 AC 136 ms
41,772 KB
testcase_10 AC 148 ms
42,004 KB
testcase_11 AC 148 ms
42,044 KB
testcase_12 AC 150 ms
42,212 KB
testcase_13 AC 148 ms
42,052 KB
testcase_14 AC 147 ms
42,056 KB
testcase_15 AC 142 ms
41,664 KB
権限があれば一括ダウンロードができます

ソースコード

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 startmin = h + A[2];

	int Dmin = 24 * 60;
	for(int i=0;i<A[0]-1;i++){
	    startmin += A[3];
	    if(startmin >= Dmin){
		startmin %= Dmin;
	    }
	}

	int ansh= startmin / 60;
	if(ansh == 24){
	    ansh = 0;
	}
	int ansm= startmin % 60;

	System.out.println(ansh + "\n" + ansm);
    }

}
0