結果

問題 No.296 n度寝
ユーザー ぴろずぴろず
提出日時 2015-11-06 22:31:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 339 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 55,968 KB
最終ジャッジ日時 2024-07-06 22:22:31
合計ジャッジ時間 5,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,272 KB
testcase_01 AC 133 ms
54,048 KB
testcase_02 AC 133 ms
54,024 KB
testcase_03 AC 136 ms
54,248 KB
testcase_04 AC 135 ms
54,176 KB
testcase_05 AC 134 ms
54,360 KB
testcase_06 AC 134 ms
54,072 KB
testcase_07 AC 133 ms
53,996 KB
testcase_08 AC 132 ms
55,968 KB
testcase_09 AC 120 ms
53,004 KB
testcase_10 AC 134 ms
54,236 KB
testcase_11 AC 131 ms
54,028 KB
testcase_12 AC 132 ms
54,148 KB
testcase_13 AC 133 ms
54,320 KB
testcase_14 AC 135 ms
54,248 KB
testcase_15 AC 131 ms
54,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no298;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt() * 60 + sc.nextInt();
		int t = sc.nextInt();
		m += t * (n - 1);
		m %= 24 * 60;
		System.out.println(m / 60);
		System.out.println(m % 60);
	}

}
0