結果

問題 No.296 n度寝
ユーザー yamax3232yamax3232
提出日時 2018-03-15 09:37:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-05-09 01:03:35
合計ジャッジ時間 5,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 135 ms
41,716 KB
testcase_04 AC 132 ms
41,444 KB
testcase_05 AC 134 ms
41,480 KB
testcase_06 AC 136 ms
41,528 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 120 ms
40,216 KB
testcase_11 AC 120 ms
40,508 KB
testcase_12 WA -
testcase_13 AC 134 ms
41,404 KB
testcase_14 AC 136 ms
41,472 KB
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
		}
		System.out.println(h);
		System.out.println(m);

	}

}
0