結果
問題 | No.222 引き算と足し算 |
ユーザー | nihi9119 |
提出日時 | 2017-06-13 19:59:13 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,686 bytes |
コンパイル時間 | 3,544 ms |
コンパイル使用メモリ | 77,740 KB |
実行使用メモリ | 50,520 KB |
最終ジャッジ日時 | 2024-09-24 16:59:38 |
合計ジャッジ時間 | 6,081 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
49,916 KB |
testcase_01 | AC | 51 ms
50,320 KB |
testcase_02 | AC | 51 ms
50,176 KB |
testcase_03 | AC | 51 ms
50,404 KB |
testcase_04 | AC | 50 ms
50,256 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 51 ms
50,352 KB |
testcase_09 | AC | 51 ms
50,372 KB |
testcase_10 | AC | 52 ms
50,256 KB |
testcase_11 | AC | 51 ms
50,204 KB |
testcase_12 | AC | 52 ms
50,328 KB |
testcase_13 | AC | 52 ms
50,224 KB |
testcase_14 | AC | 53 ms
50,152 KB |
testcase_15 | AC | 54 ms
50,048 KB |
testcase_16 | AC | 51 ms
50,044 KB |
testcase_17 | AC | 49 ms
50,412 KB |
testcase_18 | AC | 51 ms
50,060 KB |
testcase_19 | AC | 51 ms
49,928 KB |
testcase_20 | AC | 51 ms
50,076 KB |
testcase_21 | AC | 51 ms
50,284 KB |
testcase_22 | AC | 51 ms
50,124 KB |
testcase_23 | AC | 50 ms
50,292 KB |
testcase_24 | AC | 50 ms
50,192 KB |
testcase_25 | AC | 50 ms
50,016 KB |
testcase_26 | AC | 51 ms
50,268 KB |
testcase_27 | AC | 50 ms
50,256 KB |
testcase_28 | AC | 51 ms
50,052 KB |
testcase_29 | WA | - |
testcase_30 | AC | 51 ms
50,196 KB |
testcase_31 | AC | 51 ms
50,380 KB |
testcase_32 | AC | 52 ms
49,920 KB |
testcase_33 | WA | - |
ソースコード
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(); //String[] inputStringList = inputString; int signPlace = 0; String sign = ""; int result = 0; //算術演算子を探し、場所と符号(ひっくり返したもの)を記録 if (inputString.indexOf("+", 1) > 0){ signPlace = inputString.indexOf("+", 1); sign = "-"; } else { signPlace = inputString.indexOf("-", 1); 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; } }