結果

問題 No.296 n度寝
ユーザー spaciaspacia
提出日時 2016-01-04 12:24:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 574 bytes
コンパイル時間 2,537 ms
コンパイル使用メモリ 75,208 KB
実行使用メモリ 52,720 KB
最終ジャッジ日時 2024-07-07 02:41:31
合計ジャッジ時間 4,418 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
51,056 KB
testcase_01 AC 71 ms
51,388 KB
testcase_02 AC 64 ms
51,088 KB
testcase_03 AC 61 ms
51,104 KB
testcase_04 AC 65 ms
51,232 KB
testcase_05 AC 63 ms
50,980 KB
testcase_06 AC 65 ms
50,928 KB
testcase_07 AC 66 ms
52,720 KB
testcase_08 AC 68 ms
51,404 KB
testcase_09 AC 63 ms
51,100 KB
testcase_10 AC 74 ms
51,232 KB
testcase_11 AC 70 ms
51,296 KB
testcase_12 AC 74 ms
51,236 KB
testcase_13 AC 75 ms
50,932 KB
testcase_14 AC 65 ms
50,988 KB
testcase_15 AC 66 ms
51,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		int n = Integer.parseInt(line[0]);
		int h = Integer.parseInt(line[1]);
		int m = Integer.parseInt(line[2]);
		int t = Integer.parseInt(line[3]);
		
		int time = (h * 60 + m + t * (n - 1)) % 1440;
		out((time / 60) + "\n" + (time % 60));
	}
}
0