結果

問題 No.193 筒の数式
ユーザー tentententen
提出日時 2022-10-13 10:26:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 59 ms / 1,000 ms
コード長 2,266 bytes
コンパイル時間 2,494 ms
コンパイル使用メモリ 79,444 KB
実行使用メモリ 50,792 KB
最終ジャッジ日時 2024-06-26 11:54:03
合計ジャッジ時間 4,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,340 KB
testcase_01 AC 57 ms
50,524 KB
testcase_02 AC 56 ms
50,484 KB
testcase_03 AC 55 ms
50,544 KB
testcase_04 AC 57 ms
50,792 KB
testcase_05 AC 56 ms
50,440 KB
testcase_06 AC 56 ms
50,236 KB
testcase_07 AC 57 ms
50,484 KB
testcase_08 AC 57 ms
50,332 KB
testcase_09 AC 57 ms
50,324 KB
testcase_10 AC 57 ms
50,520 KB
testcase_11 AC 58 ms
50,564 KB
testcase_12 AC 56 ms
50,332 KB
testcase_13 AC 59 ms
50,304 KB
testcase_14 AC 59 ms
50,256 KB
testcase_15 AC 56 ms
50,588 KB
testcase_16 AC 57 ms
50,548 KB
testcase_17 AC 57 ms
50,516 KB
testcase_18 AC 56 ms
50,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        String s = sc.next();
        int length = s.length();
        char[] values = (s + s).toCharArray();
        long ans = Long.MIN_VALUE;
        for (int i = 0; i < length; i++) {
            if (values[i] == '+' || values[i] == '-' || values[i + length - 1] == '+' || values[i + length - 1] == '-') {
                continue;
            }
            long sum = 0;
            long tmp = 0;
            boolean isPlus = true;
            for (int j = 0; j < length; j++) {
                if (values[i + j] == '+') {
                    if (isPlus) {
                        sum += tmp;
                    } else {
                        sum -= tmp;
                        isPlus = true;
                    }
                    tmp = 0;
                } else if (values[i + j] == '-') {
                    if (isPlus) {
                        sum += tmp;
                        isPlus = false;
                    } else {
                        sum -= tmp;
                    }
                    tmp = 0;
                } else {
                    tmp *= 10;
                    tmp += values[i + j] - '0';
                }
            }
            if (isPlus) {
                sum += tmp;
            } else {
                sum -= tmp;
            }
            ans = Math.max(ans, sum);
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0