結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 112 ms
54,124 KB
testcase_04 AC 117 ms
54,244 KB
testcase_05 AC 114 ms
53,812 KB
testcase_06 AC 114 ms
53,896 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 101 ms
53,948 KB
testcase_11 AC 113 ms
54,000 KB
testcase_12 WA -
testcase_13 AC 117 ms
54,400 KB
testcase_14 AC 115 ms
54,128 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