結果
問題 | No.296 n度寝 |
ユーザー | garaisi |
提出日時 | 2017-01-01 15:08:23 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 667 bytes |
コンパイル時間 | 2,272 ms |
コンパイル使用メモリ | 74,624 KB |
実行使用メモリ | 43,860 KB |
最終ジャッジ日時 | 2024-05-09 14:48:09 |
合計ジャッジ時間 | 6,128 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 195 ms
43,860 KB |
testcase_02 | AC | 196 ms
43,408 KB |
testcase_03 | AC | 198 ms
43,252 KB |
testcase_04 | AC | 196 ms
43,712 KB |
testcase_05 | AC | 198 ms
43,584 KB |
testcase_06 | AC | 188 ms
43,380 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 188 ms
43,632 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 188 ms
43,404 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 202 ms
43,224 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); } }