結果

問題 No.296 n度寝
ユーザー kaoetayakaoetaya
提出日時 2016-12-30 00:51:19
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 3,995 ms
コンパイル使用メモリ 77,628 KB
実行使用メモリ 56,092 KB
最終ジャッジ日時 2024-12-15 17:18:04
合計ジャッジ時間 5,514 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 106 ms
54,152 KB
testcase_04 AC 108 ms
53,772 KB
testcase_05 AC 106 ms
54,120 KB
testcase_06 AC 104 ms
53,928 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 113 ms
54,008 KB
testcase_11 AC 107 ms
53,952 KB
testcase_12 WA -
testcase_13 AC 100 ms
52,712 KB
testcase_14 AC 100 ms
53,008 KB
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class pre {
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
		
		int n = s.nextInt(),h = s.nextInt(),m = s.nextInt(),t = s.nextInt();
		int time = h * 60 + m;
		
		int count = 1;
		
		while(count < n){
			time = time + t;
			count++;
		}
		
		System.out.println(time/60);
		System.out.println(time%60);
    }
}
0