結果

問題 No.296 n度寝
ユーザー mtokmtok
提出日時 2016-04-01 16:52:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 94 ms / 1,000 ms
コード長 675 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 51,080 KB
最終ジャッジ日時 2024-07-07 02:44:35
合計ジャッジ時間 3,508 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
50,964 KB
testcase_01 AC 69 ms
50,836 KB
testcase_02 AC 55 ms
50,100 KB
testcase_03 AC 52 ms
49,880 KB
testcase_04 AC 52 ms
49,904 KB
testcase_05 AC 53 ms
50,252 KB
testcase_06 AC 52 ms
49,988 KB
testcase_07 AC 94 ms
51,080 KB
testcase_08 AC 70 ms
51,056 KB
testcase_09 AC 51 ms
49,972 KB
testcase_10 AC 50 ms
49,760 KB
testcase_11 AC 50 ms
50,060 KB
testcase_12 AC 50 ms
50,112 KB
testcase_13 AC 52 ms
50,240 KB
testcase_14 AC 51 ms
50,176 KB
testcase_15 AC 52 ms
50,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args)throws Exception{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
        String[] str = line.split(" ");
        int n=Integer.parseInt(str[0]),h=Integer.parseInt(str[1]),m=Integer.parseInt(str[2]),t=Integer.parseInt(str[3]);
        while(n>1){
        	n--;
        	m+=t;
        	while(m>=60){
        		m-=60;
        		h++;
            	if(h>=24){
            		h-=24;
            	}
        	}
        }
        System.out.println(h);
        System.out.println(m);
	}
}
0