結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 127 ms
41,128 KB
testcase_04 AC 115 ms
40,300 KB
testcase_05 AC 127 ms
41,380 KB
testcase_06 AC 127 ms
41,500 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 129 ms
41,340 KB
testcase_11 AC 115 ms
39,904 KB
testcase_12 WA -
testcase_13 AC 118 ms
40,408 KB
testcase_14 AC 126 ms
41,656 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