結果

問題 No.296 n度寝
ユーザー tom_tom_tomtom_tom_tom
提出日時 2015-11-07 19:39:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 810 bytes
コンパイル時間 3,455 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-07-06 22:26:13
合計ジャッジ時間 6,301 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,200 KB
testcase_01 AC 131 ms
41,116 KB
testcase_02 AC 132 ms
41,156 KB
testcase_03 AC 133 ms
41,020 KB
testcase_04 AC 133 ms
41,432 KB
testcase_05 AC 130 ms
41,096 KB
testcase_06 AC 132 ms
41,392 KB
testcase_07 AC 131 ms
41,124 KB
testcase_08 AC 133 ms
41,396 KB
testcase_09 AC 118 ms
39,744 KB
testcase_10 AC 131 ms
41,516 KB
testcase_11 AC 115 ms
39,900 KB
testcase_12 AC 131 ms
41,128 KB
testcase_13 AC 134 ms
41,452 KB
testcase_14 AC 135 ms
41,288 KB
testcase_15 AC 131 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * http://yukicoder.me/problems/822
 */
public class YukiCoder296 {

    public static void main(String[] args) {

        run(args);

    }

    public static void run(String[] args) {
//        Scanner sc = new Scanner("2 7 30 5");
//        Scanner sc = new Scanner("1 8 0 5");
//        Scanner sc = new Scanner("7 8 0 5");
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int h = sc.nextInt();
        int m = sc.nextInt();
        int t = sc.nextInt();

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

    public void test() {
        // 2 7 30 5    , 7 35

//        System.out("")
    }


}
0