結果

問題 No.296 n度寝
ユーザー mtokmtok
提出日時 2016-04-01 16:49:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 659 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-10-02 08:48:55
合計ジャッジ時間 3,576 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 52 ms
49,856 KB
testcase_04 AC 53 ms
50,220 KB
testcase_05 AC 53 ms
49,932 KB
testcase_06 AC 53 ms
50,224 KB
testcase_07 WA -
testcase_08 AC 72 ms
50,748 KB
testcase_09 WA -
testcase_10 AC 56 ms
50,268 KB
testcase_11 AC 52 ms
50,112 KB
testcase_12 AC 54 ms
50,388 KB
testcase_13 AC 53 ms
50,280 KB
testcase_14 AC 54 ms
50,000 KB
testcase_15 AC 53 ms
50,320 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;
        	if(m>=60){
        		m-=60;
        		h++;
        	}
        	if(h>=24){
        		h-=24;
        	}
        }
        System.out.println(h);
        System.out.println(m);
	}
}
0