結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
42,340 KB
testcase_01 AC 144 ms
42,336 KB
testcase_02 AC 136 ms
42,332 KB
testcase_03 AC 134 ms
42,168 KB
testcase_04 AC 121 ms
42,364 KB
testcase_05 AC 133 ms
42,520 KB
testcase_06 AC 136 ms
42,092 KB
testcase_07 AC 155 ms
42,360 KB
testcase_08 AC 139 ms
42,468 KB
testcase_09 AC 136 ms
42,068 KB
testcase_10 AC 134 ms
42,232 KB
testcase_11 AC 126 ms
42,360 KB
testcase_12 AC 139 ms
42,520 KB
testcase_13 AC 136 ms
42,260 KB
testcase_14 AC 137 ms
42,208 KB
testcase_15 AC 138 ms
42,296 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