結果

問題 No.193 筒の数式
ユーザー GrenacheGrenache
提出日時 2016-02-14 19:32:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 992 bytes
コンパイル時間 3,447 ms
コンパイル使用メモリ 79,524 KB
実行使用メモリ 55,968 KB
最終ジャッジ日時 2024-09-22 06:36:26
合計ジャッジ時間 6,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,288 KB
testcase_01 AC 130 ms
54,028 KB
testcase_02 AC 127 ms
54,188 KB
testcase_03 AC 129 ms
54,076 KB
testcase_04 AC 126 ms
54,312 KB
testcase_05 AC 125 ms
54,008 KB
testcase_06 AC 127 ms
54,112 KB
testcase_07 AC 126 ms
54,240 KB
testcase_08 AC 125 ms
54,284 KB
testcase_09 AC 111 ms
53,028 KB
testcase_10 AC 122 ms
54,020 KB
testcase_11 AC 128 ms
54,088 KB
testcase_12 AC 126 ms
54,268 KB
testcase_13 AC 127 ms
54,104 KB
testcase_14 AC 126 ms
53,884 KB
testcase_15 AC 130 ms
54,128 KB
testcase_16 AC 125 ms
54,152 KB
testcase_17 AC 129 ms
55,968 KB
testcase_18 AC 111 ms
53,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder193 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String s = sc.next();
        int n = s.length();
        s = s + s;

        int max = Integer.MIN_VALUE;
        for (int i = 0; i < n; i++) {
        	max = Math.max(max, calc(s.substring(i, i + n)));
        }

        System.out.println(max);

        sc.close();
    }

	private static int calc(String str) {
		int n = str.length();
		if (str.charAt(0) == '+' || str.charAt(0) == '-') {
			return Integer.MIN_VALUE;
		}
		if (str.charAt(n - 1) == '+' || str.charAt(n - 1) == '-') {
			return Integer.MIN_VALUE;
		}

		int i;
		int j = 0;
		int ret = 0;
		for (i = 0; i < str.length(); i++) {
			char c = str.charAt(i);
			if (c == '+' || c == '-') {
				int tmp = Integer.parseInt(str.substring(j, i));
				ret += tmp;
				j = i;
			}
		}

		int tmp = Integer.parseInt(str.substring(j, i));
		ret += tmp;

		return ret;
	}
}
0