結果

問題 No.296 n度寝
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-02 18:40:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 406 bytes
コンパイル時間 3,362 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-07-07 02:48:30
合計ジャッジ時間 6,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,864 KB
testcase_01 AC 115 ms
54,132 KB
testcase_02 AC 93 ms
52,544 KB
testcase_03 AC 98 ms
54,012 KB
testcase_04 AC 110 ms
54,156 KB
testcase_05 AC 106 ms
54,172 KB
testcase_06 AC 107 ms
54,048 KB
testcase_07 AC 98 ms
52,892 KB
testcase_08 AC 99 ms
52,704 KB
testcase_09 AC 106 ms
54,040 KB
testcase_10 AC 108 ms
54,016 KB
testcase_11 AC 104 ms
53,800 KB
testcase_12 AC 106 ms
54,008 KB
testcase_13 AC 105 ms
54,240 KB
testcase_14 AC 104 ms
53,916 KB
testcase_15 AC 96 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise50{
  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 sum = t * (n - 1) + m;
    h += sum / 60;
    if (h > 23){
      h = h % 24;
    }
    m = sum % 60;

    System.out.println(h);
    System.out.println(m);
  }
}
0