結果
問題 | No.708 (+ー)の式 |
ユーザー | Pump0129 |
提出日時 | 2018-07-23 03:29:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 134 ms / 2,000 ms |
コード長 | 1,687 bytes |
コンパイル時間 | 2,236 ms |
コンパイル使用メモリ | 77,476 KB |
実行使用メモリ | 54,296 KB |
最終ジャッジ日時 | 2024-06-07 20:25:28 |
合計ジャッジ時間 | 5,045 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
54,176 KB |
testcase_01 | AC | 132 ms
54,176 KB |
testcase_02 | AC | 131 ms
54,044 KB |
testcase_03 | AC | 128 ms
54,020 KB |
testcase_04 | AC | 131 ms
54,136 KB |
testcase_05 | AC | 130 ms
54,296 KB |
testcase_06 | AC | 132 ms
53,812 KB |
testcase_07 | AC | 132 ms
54,192 KB |
testcase_08 | AC | 131 ms
54,044 KB |
testcase_09 | AC | 132 ms
54,124 KB |
testcase_10 | AC | 133 ms
54,164 KB |
testcase_11 | AC | 131 ms
54,036 KB |
testcase_12 | AC | 134 ms
53,776 KB |
testcase_13 | AC | 133 ms
53,940 KB |
testcase_14 | AC | 131 ms
54,084 KB |
ソースコード
package net.ipipip0129.yukicoder.no708; import java.util.Scanner; class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); // 演算用クラスのインスタンスを作成 Operation operation = new Operation(scan.nextLine()); System.out.println(operation.getNum()); } } class Operation { int num = 0; // 0=-,1=+ int prev_sign = 1; Operation(String formula){ for (int i = 0; i < formula.length(); i++) { String str = formula.substring(i, i+1); if (str.equalsIgnoreCase("-")) { prev_sign = 0; } else if (str.equalsIgnoreCase("+")) { prev_sign = 1; } else if (str.equalsIgnoreCase("(")){ // "("が出てきたら")"までの式を演算クラスで演算し答えを取得 int end_index = 0; for (int j = i; !formula.substring(j, j + 1).equalsIgnoreCase(")"); j++) { end_index = j; } end_index++; Operation operation = new Operation(formula.substring(i + 1, end_index)); if (prev_sign == 0 ) { num -= operation.num; } else { num += operation.num; } i = end_index; } else { if (prev_sign == 0) { num -= Integer.parseInt(str); } else { num += Integer.parseInt(str); } } } } public int getNum() { return num; } }