結果

問題 No.193 筒の数式
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-27 22:39:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 1,936 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 77,340 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-07-05 04:55:55
合計ジャッジ時間 5,186 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
39,804 KB
testcase_01 AC 99 ms
40,060 KB
testcase_02 AC 106 ms
40,076 KB
testcase_03 AC 115 ms
41,056 KB
testcase_04 AC 123 ms
40,896 KB
testcase_05 AC 105 ms
39,952 KB
testcase_06 AC 120 ms
40,776 KB
testcase_07 AC 120 ms
41,112 KB
testcase_08 AC 122 ms
41,000 KB
testcase_09 AC 109 ms
40,056 KB
testcase_10 AC 107 ms
40,252 KB
testcase_11 AC 105 ms
40,144 KB
testcase_12 AC 111 ms
40,292 KB
testcase_13 AC 122 ms
41,144 KB
testcase_14 AC 108 ms
40,308 KB
testcase_15 AC 120 ms
41,376 KB
testcase_16 AC 105 ms
40,252 KB
testcase_17 AC 119 ms
41,076 KB
testcase_18 AC 117 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        String s = koko.next();
        int n = s.length();
        String[] siki = new String[n];
        int count = 0;
        siki[count++]=s;
        for(int i=1; i<n; i++){
            if(s.charAt(i)!='+'&&s.charAt(i)!='-'){
                if(s.charAt(i-1)!='+'&&s.charAt(i-1)!='-'){
                    StringBuilder rest = new StringBuilder(s);
                    StringBuilder ku = new StringBuilder(s);
                    rest.delete(0, i);
                    String usiro = ku.substring(0, i);
                    rest.append(usiro);
                    siki[count++]=rest.toString();
                }
            }
        }
        int min = -99999999;
        for(int i=0; i<count; i++){
            min = Math.max(min, keisan(siki[i], 0, -1, '+', 0));
        }
        System.out.println(min);
    }
    static int keisan(String s, int moji, int hugo, char hu, int result){
        if(moji==s.length()-1){
            StringBuilder nu = new StringBuilder(s);
            nu.delete(0, hugo+1);
            int kazu = Integer.parseInt(nu.toString());
            if(hu=='+'){
                return result+kazu;
            }else{
                return result-kazu;
            }
        }else{
            if(s.charAt(moji)=='+'||s.charAt(moji)=='-'){
                StringBuilder nu = new StringBuilder(s);
                String num = nu.substring(hugo+1, moji);
                int number = Integer.parseInt(num);
                if(hu=='+'){
                    return keisan(s, moji+1, moji, s.charAt(moji), result+number);
                }else{
                    return keisan(s, moji+1, moji, s.charAt(moji), result-number);
                }
            }else{
                return keisan(s, moji+1, hugo, hu, result);
            }
        }
    }
}
0