結果
問題 | No.296 n度寝 |
ユーザー | garaisi |
提出日時 | 2017-01-01 15:08:23 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 667 bytes |
コンパイル時間 | 2,562 ms |
コンパイル使用メモリ | 74,784 KB |
実行使用メモリ | 43,668 KB |
最終ジャッジ日時 | 2024-12-16 04:58:25 |
合計ジャッジ時間 | 5,944 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 206 ms
43,268 KB |
testcase_02 | AC | 205 ms
43,280 KB |
testcase_03 | AC | 202 ms
43,092 KB |
testcase_04 | AC | 202 ms
43,276 KB |
testcase_05 | AC | 196 ms
43,164 KB |
testcase_06 | AC | 201 ms
43,108 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 203 ms
43,104 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 203 ms
43,436 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 217 ms
43,480 KB |
ソースコード
import java.util.Calendar; import java.util.Date; import java.util.Scanner; public class Main { public static void main(String args[]){ Scanner input = new Scanner(System.in); int sleeptimes = input.nextInt(); int hour = input.nextInt(); int minute = input.nextInt(); int interval = input.nextInt(); minute += interval * (sleeptimes-1); Calendar c = Calendar.getInstance(); c.set(Calendar.HOUR, hour); c.set(Calendar.MINUTE,minute); Date waketime = c.getTime(); c.setTime(waketime); int wakehour = c.get(Calendar.HOUR); int wakeminute = c.get(Calendar.MINUTE); System.out.println(wakehour); System.out.println(wakeminute); } }