結果
問題 | No.296 n度寝 |
ユーザー | nihi9119 |
提出日時 | 2017-06-08 18:00:20 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 70 ms / 1,000 ms |
コード長 | 2,379 bytes |
コンパイル時間 | 3,844 ms |
コンパイル使用メモリ | 78,024 KB |
実行使用メモリ | 51,348 KB |
最終ジャッジ日時 | 2024-09-22 13:33:27 |
合計ジャッジ時間 | 5,172 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
50,800 KB |
testcase_01 | AC | 57 ms
50,016 KB |
testcase_02 | AC | 54 ms
50,144 KB |
testcase_03 | AC | 53 ms
49,984 KB |
testcase_04 | AC | 53 ms
50,320 KB |
testcase_05 | AC | 53 ms
50,336 KB |
testcase_06 | AC | 53 ms
50,360 KB |
testcase_07 | AC | 70 ms
51,348 KB |
testcase_08 | AC | 67 ms
51,188 KB |
testcase_09 | AC | 53 ms
50,320 KB |
testcase_10 | AC | 53 ms
50,064 KB |
testcase_11 | AC | 52 ms
50,444 KB |
testcase_12 | AC | 53 ms
50,408 KB |
testcase_13 | AC | 55 ms
50,284 KB |
testcase_14 | AC | 54 ms
50,440 KB |
testcase_15 | AC | 53 ms
50,236 KB |
ソースコード
package test_5; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; public class Question_14_0608 { static final int SLEEP_MIN = 1; static final int HOUR_MIN = 0; static final int MINUTE_MIN = 0; static final int INTERVAL_MIN = 1; static final int SLEEP_MAX = (int)Math.pow(10, 9); static final int HOUR_MAX = 23; static final int MINUTE_MAX = 59; static final int INTERVAL_MAX = 1440; // 24*60 public static void main(String[] args) { InputStreamReader re = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(re); ArrayList<Integer> resultList = new ArrayList<Integer>(); try { String[] input = br.readLine().split(" "); int sleepNum = Integer.parseInt(input[0]); int hour = Integer.parseInt(input[1]); int minute = Integer.parseInt(input[2]); int interval = Integer.parseInt(input[3]); //有効値チェック if (NumJudg(sleepNum, SLEEP_MIN, SLEEP_MAX) && NumJudg(hour, HOUR_MIN, HOUR_MAX) && NumJudg(minute, MINUTE_MIN, MINUTE_MAX) && NumJudg(interval, INTERVAL_MIN, INTERVAL_MAX)) { //最終起床時間 分単位 int sumMin = 0; //起床するまでの合計(分) for (int i = 0; i < sleepNum - 1; i++) { sumMin += interval; } sumMin += hour * 60 + minute; //起床時間 int resultHour = sumMin / 60; if (resultHour > HOUR_MAX) { resultHour = resultHour % 24; } System.out.println(resultHour); //時間 System.out.println(sumMin % 60); //分 } else { System.out.println("有効値範囲外です"); } } catch (NumberFormatException e) { System.out.println("数字を入力して下さい。"); } catch (IOException e) { System.out.println("エラーが発生しました。"); } finally { try { re.close(); br.close(); } catch (IOException e) { System.out.println("InputStreamReader、BufferedReaderクローズ中にエラーが発生しました"); } } } /** * 有効値判定 * @param input 判定するもの * @param max 最大値 * @param min 最小値 * @return 範囲内ならtrue,範囲外ならfalseを返す */ private static boolean NumJudg(int input, int min, int max) { Boolean result = false; if (min <= input && input <= max) { result = true; } return result; } }