結果
問題 | No.222 引き算と足し算 |
ユーザー | nihi9119 |
提出日時 | 2017-06-13 20:23:24 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,057 bytes |
コンパイル時間 | 3,634 ms |
コンパイル使用メモリ | 77,592 KB |
実行使用メモリ | 51,324 KB |
最終ジャッジ日時 | 2024-09-24 16:59:48 |
合計ジャッジ時間 | 6,190 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 50 ms
50,212 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 51 ms
50,252 KB |
testcase_06 | AC | 51 ms
50,240 KB |
testcase_07 | AC | 51 ms
50,104 KB |
testcase_08 | AC | 52 ms
50,184 KB |
testcase_09 | AC | 50 ms
50,060 KB |
testcase_10 | AC | 53 ms
50,288 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | AC | 51 ms
50,068 KB |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | AC | 51 ms
50,028 KB |
testcase_33 | AC | 51 ms
49,900 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); } //数値が負なら大きいほうを、正なら早い方を入れる if (plusPlace == -1 || minusPlace == -1) { signPlace = Math.max(plusPlace, minusPlace); if (plusPlace == -1) { sign = "-"; } } else { signPlace = Math.min(plusPlace, minusPlace); if (Math.min(plusPlace, minusPlace) == plusPlace) { sign = "-"; } } //数値変換(符号考慮) int numX = resultNum(inputString.substring(0, signPlace)); int numY = resultNum(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; } }