結果
問題 | No.63 ポッキーゲーム |
ユーザー | nihi9119 |
提出日時 | 2017-06-08 20:17:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,435 bytes |
コンパイル時間 | 3,413 ms |
コンパイル使用メモリ | 77,872 KB |
実行使用メモリ | 50,556 KB |
最終ジャッジ日時 | 2024-09-22 13:35:37 |
合計ジャッジ時間 | 5,259 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 53 ms
50,340 KB |
testcase_04 | AC | 53 ms
50,044 KB |
testcase_05 | WA | - |
testcase_06 | AC | 52 ms
50,148 KB |
testcase_07 | AC | 53 ms
50,288 KB |
testcase_08 | WA | - |
testcase_09 | AC | 53 ms
50,352 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 52 ms
50,312 KB |
testcase_13 | AC | 52 ms
50,232 KB |
testcase_14 | AC | 53 ms
50,424 KB |
testcase_15 | AC | 52 ms
50,292 KB |
testcase_16 | AC | 53 ms
50,304 KB |
testcase_17 | AC | 54 ms
50,556 KB |
testcase_18 | AC | 53 ms
50,312 KB |
testcase_19 | AC | 53 ms
50,108 KB |
testcase_20 | AC | 54 ms
50,288 KB |
testcase_21 | AC | 53 ms
50,044 KB |
ソースコード
package test6; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /** * No.63 ポッキーゲーム http://yukicoder.me/problems/no/63 * 長さが L(mm)のポッキーを2人はそれぞれ両端から中央に向かって齧っていきます。 * 2人とも毎回 K(mm) ずつ同じタイミングでポッキーを齧ります。 * ユウちゃんは恥ずかしがり屋さんなので、 * 次のタイミングで2人ともポッキーを齧ろうとしたら唇が触れてしまうと分かった時点で齧り進めるのを止めて、 * 残りは全部ハルカちゃんが食べてしまいます。 */ public class Question_15_0609_1 { static final int POKI_MIN = 1; static final int EAT_MIN = 1; static final int POKI_MAX = (int)Math.pow(10, 9); static final int EAT_MAX = 50; public static void main(String[] args) { InputStreamReader re = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(re); try { String[] input = br.readLine().split(" "); int pokyLneth = Integer.parseInt(input[0]); int eatLneth = Integer.parseInt(input[1]); //有効値確認 if (NumJudg(pokyLneth, POKI_MIN, POKI_MAX) && NumJudg(eatLneth, EAT_MIN, EAT_MAX)) { int touchCount = 0; int center = pokyLneth / 2; //割り切れる場合は、ちょうど触れる数 割り切れない場合は触れる一歩前の数 if (center % eatLneth == 0) { touchCount = center / eatLneth - 1; } else { touchCount = center / eatLneth; } System.out.println(touchCount * eatLneth); } 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; } }