結果

問題 No.708 (+ー)の式
ユーザー htensaihtensai
提出日時 2020-01-18 20:22:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,235 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 75,760 KB
実行使用メモリ 37,132 KB
最終ジャッジ日時 2024-06-28 02:41:18
合計ジャッジ時間 3,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,088 KB
testcase_01 AC 52 ms
37,060 KB
testcase_02 AC 52 ms
36,696 KB
testcase_03 AC 53 ms
37,064 KB
testcase_04 AC 53 ms
36,988 KB
testcase_05 AC 55 ms
37,016 KB
testcase_06 AC 54 ms
37,132 KB
testcase_07 AC 53 ms
37,104 KB
testcase_08 AC 52 ms
36,580 KB
testcase_09 AC 54 ms
37,032 KB
testcase_10 AC 53 ms
36,548 KB
testcase_11 AC 52 ms
36,992 KB
testcase_12 AC 51 ms
37,004 KB
testcase_13 AC 52 ms
36,924 KB
testcase_14 AC 54 ms
36,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        char[] arr = br.readLine().toCharArray();
        ArrayDeque<Integer> deqInt = new ArrayDeque<>();
        ArrayDeque<Boolean> deqBool = new ArrayDeque<>();
        int base = 0;
        boolean isPlus = true;
        for (char c : arr) {
            if (c == '+') {
                isPlus = true;
            } else if (c == '-') {
                isPlus = false;
            } else if (c == '(') {
                deqInt.push(base);
                deqBool.push(isPlus);
                base = 0;
                isPlus = true;
            } else if (c == ')') {
                int x = deqInt.pop();
                isPlus = deqBool.pop();
                if (isPlus) {
                    base = x + base;
                } else {
                    base = x - base;
                }
            } else {
                if (isPlus) {
                    base += c - '0';
                } else {
                    base -= c - '0';
                }
            }
        }
        System.out.println(base);
    }
}
0