結果

問題 No.296 n度寝
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-03-09 21:40:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 902 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 74,696 KB
実行使用メモリ 56,076 KB
最終ジャッジ日時 2024-06-24 00:14:53
合計ジャッジ時間 5,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 127 ms
54,024 KB
testcase_04 AC 132 ms
54,100 KB
testcase_05 AC 132 ms
54,040 KB
testcase_06 AC 133 ms
54,140 KB
testcase_07 WA -
testcase_08 AC 141 ms
54,060 KB
testcase_09 WA -
testcase_10 AC 131 ms
54,224 KB
testcase_11 AC 132 ms
53,964 KB
testcase_12 AC 138 ms
54,132 KB
testcase_13 AC 134 ms
54,160 KB
testcase_14 AC 133 ms
54,172 KB
testcase_15 AC 132 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int h = in.nextInt();
        int m = in.nextInt();
        int t = in.nextInt();

        if(n == 1) {
            System.out.println(h);
            System.out.println(m);
        } else {
            for(int i=0; i<n-1; i++) {
                m += t;
                if(m >= 60) {
                    h++;
                    m -= 60;
                }
            }
            System.out.println(h % 24);
            System.out.println(m);
        }

        // h * 60 + m + t * (n - 1)
        // int at = h * 60 + m + t * (n - 1);
        // System.out.println(at / 60 % 24);
        // System.out.println(at % 60);

        in.close();
    }
}
0