結果

問題 No.222 引き算と足し算
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 14:54:20
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 802 bytes
コンパイル時間 3,490 ms
コンパイル使用メモリ 75,556 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-07-08 00:08:23
合計ジャッジ時間 7,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
52,800 KB
testcase_01 AC 105 ms
53,636 KB
testcase_02 AC 96 ms
52,668 KB
testcase_03 AC 107 ms
52,808 KB
testcase_04 AC 92 ms
52,284 KB
testcase_05 AC 107 ms
53,728 KB
testcase_06 AC 110 ms
53,908 KB
testcase_07 AC 110 ms
53,800 KB
testcase_08 AC 110 ms
53,648 KB
testcase_09 AC 108 ms
53,836 KB
testcase_10 AC 106 ms
52,952 KB
testcase_11 AC 109 ms
53,788 KB
testcase_12 AC 107 ms
54,020 KB
testcase_13 AC 96 ms
52,780 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 114 ms
53,996 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 107 ms
53,676 KB
testcase_20 AC 99 ms
52,840 KB
testcase_21 AC 109 ms
54,016 KB
testcase_22 AC 107 ms
53,864 KB
testcase_23 AC 105 ms
53,128 KB
testcase_24 AC 99 ms
52,524 KB
testcase_25 AC 100 ms
52,612 KB
testcase_26 AC 108 ms
53,776 KB
testcase_27 AC 105 ms
53,892 KB
testcase_28 AC 94 ms
53,948 KB
testcase_29 AC 106 ms
53,612 KB
testcase_30 AC 96 ms
52,424 KB
testcase_31 AC 107 ms
53,924 KB
testcase_32 AC 106 ms
52,884 KB
testcase_33 AC 99 ms
52,780 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 == -1&&lm == -1){
			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