結果

問題 No.296 n度寝
ユーザー yamax3232yamax3232
提出日時 2018-03-15 09:40:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 449 bytes
コンパイル時間 2,556 ms
コンパイル使用メモリ 73,728 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-05-09 04:24:24
合計ジャッジ時間 5,640 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,296 KB
testcase_01 AC 139 ms
41,440 KB
testcase_02 AC 143 ms
41,412 KB
testcase_03 AC 135 ms
41,580 KB
testcase_04 AC 137 ms
41,400 KB
testcase_05 AC 139 ms
41,460 KB
testcase_06 AC 136 ms
41,440 KB
testcase_07 AC 137 ms
41,440 KB
testcase_08 AC 136 ms
41,528 KB
testcase_09 AC 137 ms
41,376 KB
testcase_10 AC 140 ms
41,480 KB
testcase_11 AC 139 ms
41,188 KB
testcase_12 AC 133 ms
41,500 KB
testcase_13 AC 135 ms
41,748 KB
testcase_14 AC 137 ms
41,540 KB
testcase_15 AC 141 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		
		Scanner kb=new Scanner(System.in);
		int n=kb.nextInt();
		int h=kb.nextInt();
		int m=kb.nextInt();
		int t=kb.nextInt();
		//h:m+(n-1)*t
		int neru=(n-1)*t;
		m+=neru;
		if(m>=60){
			h+=(m/60);
			m=(m%60);
		}
		if(h>23){
			h=h%24;
		}
		System.out.println(h);
		System.out.println(m);

	}

}
0