結果

問題 No.193 筒の数式
ユーザー tentententen
提出日時 2020-10-06 08:49:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 1,498 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 77,168 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-07-20 00:35:18
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,972 KB
testcase_01 AC 128 ms
40,928 KB
testcase_02 AC 127 ms
40,928 KB
testcase_03 AC 129 ms
40,760 KB
testcase_04 AC 130 ms
41,128 KB
testcase_05 AC 130 ms
41,076 KB
testcase_06 AC 130 ms
41,072 KB
testcase_07 AC 128 ms
40,908 KB
testcase_08 AC 130 ms
41,404 KB
testcase_09 AC 130 ms
41,072 KB
testcase_10 AC 113 ms
40,124 KB
testcase_11 AC 126 ms
41,060 KB
testcase_12 AC 130 ms
40,912 KB
testcase_13 AC 129 ms
41,292 KB
testcase_14 AC 128 ms
40,944 KB
testcase_15 AC 132 ms
40,800 KB
testcase_16 AC 130 ms
41,176 KB
testcase_17 AC 131 ms
40,660 KB
testcase_18 AC 129 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        int length = arr.length;
        int max = Integer.MIN_VALUE;
        for (int i = 0; i < length; i++) {
            if (arr[i] == '+' || arr[i] == '-' || arr[(i - 1 + length) % length] == '+' || arr[(i - 1 + length) % length] == '-') {
                continue;
            }
            int sum = 0;
            boolean isPlus = true;
            int tmp = 0;
            for (int j = 0; j < length; j++) {
                if (arr[(i + j) % length] == '+') {
                    if (isPlus) {
                        sum += tmp;
                    } else {
                        sum -= tmp;
                    }
                    isPlus = true;
                    tmp = 0;
                } else if (arr[(i + j) % length] == '-') {
                     if (isPlus) {
                        sum += tmp;
                    } else {
                        sum -= tmp;
                    }
                    isPlus = false;
                    tmp = 0;
                } else {
                    tmp *= 10;
                    tmp += arr[(i + j) % length] - '0';
                }
            }
            if (isPlus) {
                sum += tmp;
            } else {
                sum -= tmp;
            }
            max = Math.max(max, sum);
        }
        System.out.println(max);
    }
}
0