結果

問題 No.222 引き算と足し算
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 18:50:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 815 bytes
コンパイル時間 3,326 ms
コンパイル使用メモリ 75,600 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-07-08 00:11:45
合計ジャッジ時間 8,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,440 KB
testcase_01 AC 126 ms
41,308 KB
testcase_02 AC 124 ms
41,304 KB
testcase_03 AC 124 ms
41,688 KB
testcase_04 AC 117 ms
40,052 KB
testcase_05 AC 126 ms
41,156 KB
testcase_06 AC 121 ms
41,076 KB
testcase_07 AC 127 ms
41,328 KB
testcase_08 AC 125 ms
41,308 KB
testcase_09 AC 126 ms
41,316 KB
testcase_10 AC 123 ms
41,116 KB
testcase_11 AC 124 ms
41,460 KB
testcase_12 AC 123 ms
41,016 KB
testcase_13 AC 125 ms
41,360 KB
testcase_14 AC 123 ms
41,440 KB
testcase_15 AC 124 ms
41,108 KB
testcase_16 AC 123 ms
41,164 KB
testcase_17 AC 121 ms
41,112 KB
testcase_18 AC 120 ms
41,228 KB
testcase_19 AC 121 ms
40,972 KB
testcase_20 AC 123 ms
41,200 KB
testcase_21 AC 122 ms
41,296 KB
testcase_22 AC 122 ms
41,240 KB
testcase_23 AC 122 ms
41,316 KB
testcase_24 AC 116 ms
40,184 KB
testcase_25 AC 125 ms
41,084 KB
testcase_26 AC 123 ms
41,180 KB
testcase_27 AC 124 ms
41,504 KB
testcase_28 AC 126 ms
41,368 KB
testcase_29 AC 120 ms
41,108 KB
testcase_30 AC 123 ms
41,440 KB
testcase_31 AC 124 ms
41,080 KB
testcase_32 AC 122 ms
41,288 KB
testcase_33 AC 110 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Tashihiki {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		StringBuilder str = new StringBuilder(s.nextLine());
		s.close();
		int sum = 0;
		int lp = str.lastIndexOf("+"),lm = str.lastIndexOf("-");
		int b = Integer.parseInt(str.substring(Math.max(lp, lm), str.length()));
		str.delete(Math.max(lm, lp), str.length());
		lp = str.lastIndexOf("+");
		lm = str.lastIndexOf("-");
		if(lp <= 0 && lm <= 0){  //要修正
			sum = Integer.parseInt(str.toString()) - b;
		}else{
			int a = Integer.parseInt(str.substring(0, Math.max(lm, lp)));
			str.delete(0, Math.max(lp, lm));
			if(str.charAt(0) == '+'){
				sum = a-b;
			}else{
				sum = a+b;
			}
		}
		System.out.println(sum);
	}

}
0