結果

問題 No.193 筒の数式
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 04:19:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 1,325 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 80,236 KB
実行使用メモリ 55,840 KB
最終ジャッジ日時 2024-11-28 16:10:01
合計ジャッジ時間 5,952 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,956 KB
testcase_01 AC 136 ms
53,952 KB
testcase_02 AC 136 ms
53,848 KB
testcase_03 AC 138 ms
54,020 KB
testcase_04 AC 139 ms
54,004 KB
testcase_05 AC 138 ms
53,900 KB
testcase_06 AC 134 ms
54,140 KB
testcase_07 AC 133 ms
55,840 KB
testcase_08 AC 135 ms
53,756 KB
testcase_09 AC 134 ms
53,868 KB
testcase_10 AC 134 ms
54,128 KB
testcase_11 AC 135 ms
54,108 KB
testcase_12 AC 135 ms
54,068 KB
testcase_13 AC 135 ms
53,972 KB
testcase_14 AC 132 ms
53,784 KB
testcase_15 AC 136 ms
53,664 KB
testcase_16 AC 135 ms
53,856 KB
testcase_17 AC 131 ms
53,940 KB
testcase_18 AC 133 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        String [] arr = S.split("");
        int L = S.length();
        int max=Integer.MIN_VALUE;
        for(int j=0; j<L; j++){
            String t = "";
            for(int i=0; i<L; i++){
                t+=arr[(i+j)%L];
            }
            int a=t.charAt(0);
            int z=t.charAt(L-1);
            if(a>='0'&&a<='9'&&z>='0'&&z<='9'){
                int num = cal(t);
                max=Math.max(max,num);
            }
        }
        System.out.println(max);
    }
    static int cal(String S){
        String [] integer = S.split("[+-]");
        int N = integer.length;
        int [] z = new int [N];
        for(int i=0; i<N; i++){
            z[i]=Integer.parseInt(integer[i]);
        }
        int r = z[0];
        int [] sign = new int [N-1];
        int j=0;
        for(int i=0; i<S.length(); i++){
            int tmp=S.charAt(i);
            if(tmp=='+'||tmp=='-'){
                sign[j]=tmp;
                j++;
            }
        }
        for(int i=0; i<N-1; i++){
            if(sign[i]=='+'){
                r+=z[i+1];
            }else{
                r-=z[i+1];
            }
        }
        return r;
    }
}
0