結果

問題 No.296 n度寝
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 08:04:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 219 ms / 1,000 ms
コード長 464 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 55,148 KB
最終ジャッジ日時 2024-09-13 11:16:16
合計ジャッジ時間 6,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
54,812 KB
testcase_01 AC 205 ms
54,752 KB
testcase_02 AC 206 ms
54,992 KB
testcase_03 AC 211 ms
54,744 KB
testcase_04 AC 212 ms
54,840 KB
testcase_05 AC 206 ms
55,148 KB
testcase_06 AC 216 ms
54,756 KB
testcase_07 AC 217 ms
55,076 KB
testcase_08 AC 213 ms
54,716 KB
testcase_09 AC 213 ms
55,048 KB
testcase_10 AC 202 ms
54,652 KB
testcase_11 AC 203 ms
54,960 KB
testcase_12 AC 219 ms
54,880 KB
testcase_13 AC 214 ms
55,040 KB
testcase_14 AC 217 ms
54,816 KB
testcase_15 AC 207 ms
55,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt(); int h = sc.nextInt(); int m = sc.nextInt(); int t = sc.nextInt();
		
		Calendar cl = Calendar.getInstance();
		cl.set(Calendar.HOUR_OF_DAY, h);
		cl.set(Calendar.MINUTE, m);
		cl.add(Calendar.MINUTE, (n-1)*t);
		System.out.println(cl.get(Calendar.HOUR_OF_DAY));
		System.out.println(cl.get(Calendar.MINUTE));
		
	}
}
0