結果

問題 No.193 筒の数式
ユーザー kou6839kou6839
提出日時 2015-04-29 01:16:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 1,122 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 79,020 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-07-05 16:23:13
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,316 KB
testcase_01 AC 106 ms
41,204 KB
testcase_02 AC 108 ms
41,140 KB
testcase_03 AC 94 ms
41,280 KB
testcase_04 AC 112 ms
40,904 KB
testcase_05 AC 93 ms
41,344 KB
testcase_06 AC 95 ms
41,248 KB
testcase_07 AC 93 ms
41,092 KB
testcase_08 AC 105 ms
40,984 KB
testcase_09 AC 107 ms
40,988 KB
testcase_10 AC 100 ms
41,224 KB
testcase_11 AC 96 ms
41,128 KB
testcase_12 AC 109 ms
41,052 KB
testcase_13 AC 108 ms
40,412 KB
testcase_14 AC 98 ms
41,472 KB
testcase_15 AC 101 ms
40,712 KB
testcase_16 AC 115 ms
40,796 KB
testcase_17 AC 106 ms
40,744 KB
testcase_18 AC 107 ms
39,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static long cul(String a){
		int now=0;
		long ret = 0;
		while(now<a.length() && Character.isDigit(a.charAt(now)) ){
			now++;
		}
		ret=Long.parseLong(a.substring(0, now));
		while(now<a.length()){
			if(a.charAt(now)=='-'){
				now++;
				int s=now;
				while(now<a.length() && Character.isDigit(a.charAt(now)) ){
					now++;
				}
				ret-=Long.parseLong(a.substring(s,now));
				
			}else{
				now++;
				int s=now;
				while(now<a.length() && Character.isDigit(a.charAt(now)) ){
					now++;
				}
				ret+=Long.parseLong(a.substring(s,now));
			}
		}
		return ret;
	}
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		String a = sc.next();
		long ans=cul(a);
		int le = a.length();
		a+=a;
		for(int i=1;i<le;i++){
			if(a.substring(i, i+le).indexOf("-")!=0 &&a.substring(i, i+le).indexOf("+")!=0 &&a.substring(i, i+le).lastIndexOf("-")!=(le-1) &&a.substring(i, i+le).lastIndexOf("+")!=(le-1)  ){
				ans=Math.max(ans, cul(a.substring(i,i+le)));
			}
		}
		System.out.println(ans);
	}
}
0