結果
問題 | No.222 引き算と足し算 |
ユーザー | nihi9119 |
提出日時 | 2017-06-19 17:24:28 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 54 ms / 1,000 ms |
コード長 | 3,048 bytes |
コンパイル時間 | 3,908 ms |
コンパイル使用メモリ | 76,664 KB |
実行使用メモリ | 37,144 KB |
最終ジャッジ日時 | 2024-10-02 07:44:39 |
合計ジャッジ時間 | 6,461 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,008 KB |
testcase_01 | AC | 52 ms
36,708 KB |
testcase_02 | AC | 52 ms
36,864 KB |
testcase_03 | AC | 51 ms
36,728 KB |
testcase_04 | AC | 52 ms
36,628 KB |
testcase_05 | AC | 52 ms
36,788 KB |
testcase_06 | AC | 51 ms
36,868 KB |
testcase_07 | AC | 53 ms
36,868 KB |
testcase_08 | AC | 52 ms
37,076 KB |
testcase_09 | AC | 52 ms
36,548 KB |
testcase_10 | AC | 52 ms
37,064 KB |
testcase_11 | AC | 52 ms
36,696 KB |
testcase_12 | AC | 54 ms
36,892 KB |
testcase_13 | AC | 52 ms
36,664 KB |
testcase_14 | AC | 52 ms
36,724 KB |
testcase_15 | AC | 51 ms
36,796 KB |
testcase_16 | AC | 51 ms
36,584 KB |
testcase_17 | AC | 51 ms
36,796 KB |
testcase_18 | AC | 53 ms
37,080 KB |
testcase_19 | AC | 51 ms
36,780 KB |
testcase_20 | AC | 51 ms
37,144 KB |
testcase_21 | AC | 51 ms
37,036 KB |
testcase_22 | AC | 52 ms
36,804 KB |
testcase_23 | AC | 50 ms
36,804 KB |
testcase_24 | AC | 53 ms
36,912 KB |
testcase_25 | AC | 52 ms
36,872 KB |
testcase_26 | AC | 53 ms
36,680 KB |
testcase_27 | AC | 53 ms
37,020 KB |
testcase_28 | AC | 52 ms
36,564 KB |
testcase_29 | AC | 52 ms
36,880 KB |
testcase_30 | AC | 52 ms
36,600 KB |
testcase_31 | AC | 52 ms
36,680 KB |
testcase_32 | AC | 53 ms
36,872 KB |
testcase_33 | AC | 52 ms
36,712 KB |
ソースコード
package test7; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /** * No.222 引き算と足し算 * http://yukicoder.me/problems/no/222 */ public class Question_20_0613 { final static int X_MIN = -10000; final static int Y_MIN = -10000; final static int X_MAX = 10000; final static int Y_MAX = 10000; public static void main(String[] args) { InputStreamReader re = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(re); try { String inputString = br.readLine(); int plusPlace = 0; int minusPlace = 0; int signPlace = 0; String sign = "+"; int result = 0; //算術演算子を探し、場所と符号(ひっくり返したもの)を記録 if (inputString.indexOf("+", 1) > 0){ plusPlace = inputString.indexOf("+", 1); } if (inputString.indexOf("-", 1) > 0) { minusPlace = inputString.indexOf("-", 1); } //数値が0なら大きいほうを、正なら早い方を入れる if (plusPlace == 0 || minusPlace == 0) { signPlace = Math.max(plusPlace, minusPlace); if (minusPlace == 0) { sign = "-"; } } else { signPlace = Math.min(plusPlace, minusPlace); if (Math.min(plusPlace, minusPlace) == plusPlace) { sign = "-"; } } //数値変換 int numX = Integer.parseInt(inputString.substring(0, signPlace)); int numY = Integer.parseInt(inputString.substring(signPlace + 1, inputString.length())); //数値チェック if (NumJudg(numX, X_MIN, X_MAX) && NumJudg(numY, Y_MIN, Y_MAX)) { //計算 if (sign.equals("+")) { result = numX + numY; } else { result = numX - numY; } System.out.println(result); } 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; } /** * 数値に変換して返す(符号も考慮) * @param str * @return 変換した数値 */ private static int resultNum(String str) { int result = 0; if (str.substring(0, 1).equals("-")) { String str1 = str.substring(1, str.length()); int num = Integer.parseInt(str1); result = -num; } else if (str.substring(0, 1).equals("+")) { String str1 = str.substring(1, str.length()); result = Integer.parseInt(str1); } else { result = Integer.parseInt(str); } return result; } }