結果

問題 No.296 n度寝
ユーザー shinwisteriashinwisteria
提出日時 2018-02-16 23:16:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 442 bytes
コンパイル時間 3,427 ms
コンパイル使用メモリ 76,164 KB
実行使用メモリ 42,332 KB
最終ジャッジ日時 2024-06-23 05:49:48
合計ジャッジ時間 6,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,244 KB
testcase_01 AC 143 ms
41,920 KB
testcase_02 AC 154 ms
42,144 KB
testcase_03 AC 150 ms
42,144 KB
testcase_04 AC 148 ms
42,096 KB
testcase_05 AC 160 ms
42,160 KB
testcase_06 AC 155 ms
42,256 KB
testcase_07 AC 148 ms
41,852 KB
testcase_08 AC 139 ms
41,940 KB
testcase_09 AC 139 ms
42,044 KB
testcase_10 AC 151 ms
42,180 KB
testcase_11 AC 149 ms
42,164 KB
testcase_12 AC 146 ms
42,248 KB
testcase_13 AC 151 ms
42,304 KB
testcase_14 AC 146 ms
42,332 KB
testcase_15 AC 144 ms
42,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con296 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int N = s.nextInt() , H = s.nextInt() , M = s.nextInt() , T = s.nextInt();
		s.close();

		H = (H + (T*(N-1)) /60) % 24;
		if((M = M + (T*(N-1)) %60) > 59){
			H = (H + 1) % 24;
		}
		M = M % 60;
		System.out.println(H + "\n" + M);

	}

}
0