結果

問題 No.296 n度寝
ユーザー tubo28tubo28
提出日時 2015-11-13 21:05:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 430 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-07-06 22:28:28
合計ジャッジ時間 4,521 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,292 KB
testcase_01 AC 117 ms
41,064 KB
testcase_02 AC 121 ms
41,124 KB
testcase_03 AC 106 ms
41,148 KB
testcase_04 AC 116 ms
41,472 KB
testcase_05 AC 107 ms
41,408 KB
testcase_06 AC 117 ms
41,208 KB
testcase_07 AC 103 ms
41,120 KB
testcase_08 AC 120 ms
41,344 KB
testcase_09 AC 105 ms
41,076 KB
testcase_10 AC 119 ms
41,340 KB
testcase_11 AC 117 ms
40,764 KB
testcase_12 AC 124 ms
41,344 KB
testcase_13 AC 109 ms
41,564 KB
testcase_14 AC 116 ms
41,196 KB
testcase_15 AC 117 ms
41,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package testJava;

import java.util.*;
public class Main {
	public static void main(String [] args){
		try {(new Main()).run();} catch(Exception e){}
	}
	static Scanner cin;
	void run() {
		cin = new Scanner(System.in);
		int N = cin.nextInt();
		int H = cin.nextInt();
		int M = cin.nextInt();
		int T = cin.nextInt();
		M += (N-1) * T;
		H += M / 60;
		M %= 60;
		H %= 24;
		System.out.println(H);
		System.out.println(M);
	}
}
0