結果

問題 No.193 筒の数式
ユーザー kenkooookenkoooo
提出日時 2015-04-26 22:47:22
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,119 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 78,008 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-07-05 03:12:01
合計ジャッジ時間 5,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,152 KB
testcase_01 AC 120 ms
41,036 KB
testcase_02 AC 119 ms
41,388 KB
testcase_03 AC 124 ms
41,108 KB
testcase_04 AC 125 ms
41,084 KB
testcase_05 AC 114 ms
40,276 KB
testcase_06 AC 124 ms
41,360 KB
testcase_07 AC 110 ms
41,472 KB
testcase_08 AC 118 ms
41,020 KB
testcase_09 AC 118 ms
41,328 KB
testcase_10 AC 107 ms
41,412 KB
testcase_11 AC 122 ms
41,260 KB
testcase_12 AC 121 ms
41,064 KB
testcase_13 AC 127 ms
41,016 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] line = sc.next().toCharArray();
		sc.close();
		long max = 0;
		for (int q = 0; q < line.length; q++) {
			if (Character.isDigit(line[0]) && Character.isDigit(line[line.length - 1])) {

				long sum = 0;

				boolean plus = true;
				StringBuilder sb = new StringBuilder();
				for (int i = 0; i < line.length; i++) {
					if (Character.isDigit(line[i])) {
						sb.append(line[i]);
					} else {
						if (plus) {
							sum += Long.parseLong(sb.toString());
						} else {
							sum -= Long.parseLong(sb.toString());
						}

						sb.setLength(0);
						if (line[i] == '+') {
							plus = true;
						} else {
							plus = false;
						}
					}
				}
				if (plus) {
					sum += Long.parseLong(sb.toString());
				} else {
					sum -= Long.parseLong(sb.toString());
				}
				max = Math.max(max, sum);

			}

			char tmp = line[0];
			for (int i = 1; i < line.length; i++) {
				line[i - 1] = line[i];
			}
			line[line.length - 1] = tmp;

		}
		System.out.println(max);
	}
}
0