結果

問題 No.296 n度寝
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2020-12-30 23:00:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 669 bytes
コンパイル時間 3,827 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-10-08 06:15:25
合計ジャッジ時間 6,349 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,060 KB
testcase_01 AC 126 ms
54,060 KB
testcase_02 AC 126 ms
53,896 KB
testcase_03 AC 125 ms
54,080 KB
testcase_04 AC 128 ms
54,004 KB
testcase_05 AC 126 ms
53,924 KB
testcase_06 AC 120 ms
53,876 KB
testcase_07 AC 131 ms
53,904 KB
testcase_08 AC 124 ms
53,824 KB
testcase_09 AC 126 ms
54,056 KB
testcase_10 AC 127 ms
54,328 KB
testcase_11 AC 128 ms
54,196 KB
testcase_12 AC 127 ms
53,664 KB
testcase_13 AC 126 ms
53,964 KB
testcase_14 AC 123 ms
53,700 KB
testcase_15 AC 125 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class nDoNe296 {

  // https://yukicoder.me/problems/no/296
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    int awakeCount = Integer.parseInt(sc.next());
    int hour = Integer.parseInt(sc.next());
    int minute = Integer.parseInt(sc.next());
    int interval = Integer.parseInt(sc.next());

    minute += (awakeCount - 1) * interval;
    if (minute >= 60) {
      hour += minute / 60;
      minute = minute % 60;
    }

    if (hour >= 24) {
      hour = hour % 24;
    }
    System.out.println(hour);
    System.out.println(minute);

  }
}
0