結果

問題 No.296 n度寝
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-15 01:25:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 541 bytes
コンパイル時間 3,778 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 41,348 KB
最終ジャッジ日時 2024-06-28 12:00:52
合計ジャッジ時間 6,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,096 KB
testcase_01 AC 133 ms
41,200 KB
testcase_02 AC 136 ms
40,972 KB
testcase_03 AC 137 ms
41,136 KB
testcase_04 AC 137 ms
41,348 KB
testcase_05 AC 137 ms
41,032 KB
testcase_06 AC 138 ms
40,984 KB
testcase_07 AC 134 ms
40,728 KB
testcase_08 AC 134 ms
41,240 KB
testcase_09 AC 137 ms
41,180 KB
testcase_10 AC 139 ms
41,104 KB
testcase_11 AC 144 ms
41,240 KB
testcase_12 AC 134 ms
41,268 KB
testcase_13 AC 137 ms
41,096 KB
testcase_14 AC 133 ms
41,108 KB
testcase_15 AC 132 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

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

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

        int sleep_time = T*(N-1);
        int min = M + sleep_time;
        int h_wake = (H+min/60)%24;
        int m_wake = min%60;

        System.out.println(h_wake);
        System.out.println(m_wake);
    }
}
0