結果

問題 No.296 n度寝
ユーザー yamax3232yamax3232
提出日時 2018-03-15 09:39:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 2,137 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-12-15 13:16:49
合計ジャッジ時間 4,954 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 123 ms
54,004 KB
testcase_04 AC 119 ms
54,176 KB
testcase_05 AC 117 ms
54,068 KB
testcase_06 AC 111 ms
53,492 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 110 ms
53,412 KB
testcase_11 AC 122 ms
54,340 KB
testcase_12 WA -
testcase_13 AC 134 ms
53,912 KB
testcase_14 AC 128 ms
54,236 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