結果

問題 No.296 n度寝
ユーザー dazydazy
提出日時 2017-04-10 14:54:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 1,000 ms
コード長 572 bytes
コンパイル時間 3,388 ms
コンパイル使用メモリ 75,976 KB
実行使用メモリ 55,104 KB
最終ジャッジ日時 2024-07-18 05:40:47
合計ジャッジ時間 6,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,736 KB
testcase_01 AC 144 ms
54,980 KB
testcase_02 AC 144 ms
55,068 KB
testcase_03 AC 135 ms
54,528 KB
testcase_04 AC 135 ms
55,048 KB
testcase_05 AC 125 ms
54,688 KB
testcase_06 AC 122 ms
54,528 KB
testcase_07 AC 146 ms
54,956 KB
testcase_08 AC 142 ms
55,096 KB
testcase_09 AC 139 ms
54,956 KB
testcase_10 AC 145 ms
54,852 KB
testcase_11 AC 149 ms
54,984 KB
testcase_12 AC 142 ms
54,832 KB
testcase_13 AC 136 ms
54,896 KB
testcase_14 AC 121 ms
54,492 KB
testcase_15 AC 141 ms
55,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);

        int N = scan.nextInt();
        int H = scan.nextInt();
        int M = scan.nextInt();
        int T = scan.nextInt();

        int Th = T/60;
        int Tm = T%60;

        for (int i = 0; i < N - 1; i++) {
            M += Tm;
            if (M > 59) {
                H++;
                M %= 60;
            }
            H += Th;
            if (H > 23) H %= 24;
        }

        System.out.println(H + "\n" + M);
    }
}
0