結果

問題 No.708 (+ー)の式
ユーザー k_6101k_6101
提出日時 2019-12-10 23:51:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 2,133 bytes
コンパイル時間 2,513 ms
コンパイル使用メモリ 79,208 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-06-24 02:40:30
合計ジャッジ時間 5,316 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,960 KB
testcase_01 AC 129 ms
54,076 KB
testcase_02 AC 128 ms
54,368 KB
testcase_03 AC 126 ms
54,372 KB
testcase_04 AC 126 ms
54,172 KB
testcase_05 AC 126 ms
53,868 KB
testcase_06 AC 129 ms
54,228 KB
testcase_07 AC 129 ms
54,064 KB
testcase_08 AC 125 ms
53,992 KB
testcase_09 AC 127 ms
54,064 KB
testcase_10 AC 131 ms
54,072 KB
testcase_11 AC 131 ms
54,304 KB
testcase_12 AC 131 ms
54,000 KB
testcase_13 AC 131 ms
54,216 KB
testcase_14 AC 130 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStream;
import java.io.PrintWriter;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.PriorityQueue;
import java.util.Scanner;
import java.util.Set;
import java.util.Stack;
import java.util.TreeMap;
import java.util.TreeSet;

import static java.util.Comparator.*;

public class Main {
    public static void main(String[] args) {
        PrintWriter out = new PrintWriter(System.out);
        Solver solver = new Solver(System.in, out);
        solver.solve();
        out.close();
    }
}
class Solver {
	Scanner sc;
	PrintWriter out;
    public Solver(InputStream in, PrintWriter out) {
    	sc = new Scanner(in);
    	this.out = out;
    }
    // ==================================================================
    public void solve() {
    	char[] C = sc.next().toCharArray();
    	int ans = 0;
    	char pre = '+';
    	boolean rev = false;
    	boolean f = true;
    	for (int i = 0; i < C.length; i++) {
			if(C[i] == '+') {
				if(!rev) {
					f = true;		
//					out.println(" + 次を足す");	
				} else {
					f = false;
//					out.println(" + だけど、次を引く");
				}
			} else if(C[i] == '-') {
				if(!rev) {
					f = false;
//					out.println(" - 次を引く");
				} else {
					f = true;
//					out.println(" - だけど、次を足す");
				}
			} else if(C[i] == '(') {
				if(pre == '-') {
					rev = true;
//					out.println(" 括弧の前が - なので リバース ON");
				}
			} else if(C[i] == ')') {
				rev = false;	
//				out.println(" 括弧が終わったから リバース OFF");
			} else {
				if(f) {
					ans += (int)(C[i] - '0');
//					out.println(" C[" + i + "] = " + C[i] + " を足す");
				} else {
					ans -= (int)(C[i] - '0');
//					out.println(" C[" + i + "] = " + C[i] + " を引く");
				}
//				out.println("ans = " + ans);
			}
			pre = C[i];
		}
    	out.println(ans);
    }
}

0