結果

問題 No.296 n度寝
ユーザー yu_017yu_017
提出日時 2019-02-03 09:55:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 373 bytes
コンパイル時間 3,784 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 41,900 KB
最終ジャッジ日時 2024-05-09 07:56:09
合計ジャッジ時間 6,732 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,516 KB
testcase_01 AC 134 ms
41,504 KB
testcase_02 AC 133 ms
41,548 KB
testcase_03 AC 136 ms
41,456 KB
testcase_04 AC 134 ms
41,668 KB
testcase_05 AC 132 ms
41,696 KB
testcase_06 AC 134 ms
41,488 KB
testcase_07 AC 134 ms
41,900 KB
testcase_08 AC 135 ms
41,240 KB
testcase_09 AC 133 ms
41,724 KB
testcase_10 AC 134 ms
41,488 KB
testcase_11 AC 132 ms
41,604 KB
testcase_12 AC 131 ms
41,628 KB
testcase_13 AC 132 ms
41,264 KB
testcase_14 AC 133 ms
41,316 KB
testcase_15 AC 134 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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