結果

問題 No.296 n度寝
ユーザー yagi2yagi2
提出日時 2017-04-20 15:29:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 450 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 75,056 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-07-19 20:57:16
合計ジャッジ時間 5,462 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,448 KB
testcase_01 AC 126 ms
41,156 KB
testcase_02 AC 126 ms
41,500 KB
testcase_03 AC 125 ms
41,416 KB
testcase_04 AC 126 ms
40,924 KB
testcase_05 AC 131 ms
40,924 KB
testcase_06 AC 128 ms
41,216 KB
testcase_07 AC 126 ms
41,188 KB
testcase_08 AC 125 ms
41,204 KB
testcase_09 AC 125 ms
41,432 KB
testcase_10 AC 128 ms
41,184 KB
testcase_11 AC 130 ms
40,944 KB
testcase_12 AC 126 ms
41,424 KB
testcase_13 AC 111 ms
39,864 KB
testcase_14 AC 119 ms
40,900 KB
testcase_15 AC 124 ms
41,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long N = Long.parseLong(sc.next()) - 1;
        int H = Integer.parseInt(sc.next());
        int M = Integer.parseInt(sc.next());
        int T = Integer.parseInt(sc.next());

        M += T * N;
        H += M / 60;
        M %= 60;
        H %= 24;

        System.out.printf("%d\n%d", H, M);

    }
}
0