結果

問題 No.296 n度寝
ユーザー cande398cande398
提出日時 2017-10-10 17:11:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 554 bytes
コンパイル時間 2,502 ms
コンパイル使用メモリ 81,280 KB
実行使用メモリ 42,540 KB
最終ジャッジ日時 2024-11-17 08:27:57
合計ジャッジ時間 5,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,076 KB
testcase_01 AC 154 ms
42,540 KB
testcase_02 AC 157 ms
41,964 KB
testcase_03 AC 153 ms
41,932 KB
testcase_04 AC 153 ms
42,124 KB
testcase_05 AC 157 ms
42,128 KB
testcase_06 AC 151 ms
42,208 KB
testcase_07 AC 160 ms
42,328 KB
testcase_08 AC 153 ms
42,040 KB
testcase_09 AC 152 ms
42,340 KB
testcase_10 AC 157 ms
41,916 KB
testcase_11 AC 155 ms
42,268 KB
testcase_12 AC 157 ms
42,048 KB
testcase_13 AC 160 ms
41,964 KB
testcase_14 AC 152 ms
42,164 KB
testcase_15 AC 155 ms
41,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  public static void main(String[] args){
    int i;
    Scanner sc = new Scanner(System.in);
    String[] line = sc.nextLine().split(" ");
    int[] time = new int[4];
    for(i=0;i<4;i++)time[i] = Integer.parseInt(line[i]);
    time[2] = time[2] + (time[0] - 1) * time[3];
    while(time[2] > 1440){
      time[2] -= 1440;
    }
    while(time[2]>59){
      time[1]++;
      if(time[1]>23){
        time[1] = 0;
      }
      time[2] = time[2] - 60;
    }
    System.out.println(time[1] + "\n" + time[2]);
  }
}
0