結果

問題 No.222 引き算と足し算
ユーザー uafr_csuafr_cs
提出日時 2015-06-16 23:26:05
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 888 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 77,972 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-11-15 21:55:36
合計ジャッジ時間 7,410 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,052 KB
testcase_01 AC 119 ms
41,180 KB
testcase_02 AC 123 ms
41,412 KB
testcase_03 AC 122 ms
41,048 KB
testcase_04 AC 122 ms
41,276 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 119 ms
41,156 KB
testcase_09 AC 121 ms
40,924 KB
testcase_10 AC 110 ms
40,172 KB
testcase_11 AC 124 ms
41,228 KB
testcase_12 AC 109 ms
39,960 KB
testcase_13 AC 107 ms
40,180 KB
testcase_14 AC 122 ms
41,176 KB
testcase_15 AC 123 ms
40,900 KB
testcase_16 AC 130 ms
41,668 KB
testcase_17 AC 122 ms
41,424 KB
testcase_18 AC 109 ms
40,260 KB
testcase_19 AC 125 ms
41,148 KB
testcase_20 AC 122 ms
41,268 KB
testcase_21 AC 123 ms
41,280 KB
testcase_22 AC 121 ms
41,048 KB
testcase_23 AC 125 ms
41,028 KB
testcase_24 AC 122 ms
41,092 KB
testcase_25 AC 124 ms
40,952 KB
testcase_26 AC 106 ms
39,988 KB
testcase_27 AC 122 ms
41,436 KB
testcase_28 AC 124 ms
41,260 KB
testcase_29 RE -
testcase_30 AC 121 ms
41,168 KB
testcase_31 AC 113 ms
40,688 KB
testcase_32 AC 121 ms
41,152 KB
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		String input = sc.next();
		
		boolean is_minus = false;
		if(input.startsWith("-")){
			input = input.substring(1);
			is_minus = true;
		}else if(input.startsWith("+")){
			input = input.substring(1);
		}
		
		if(input.indexOf("+") >= 0){
			final int fst = (is_minus ? -1 : 1) * Integer.parseInt(input.substring(0, input.indexOf("+")));
			final int snd = Integer.parseInt(input.substring(input.indexOf("+") + 1, input.length()));
			
			System.out.println(fst - snd);
		}else{
			final int fst = (is_minus ? -1 : 1) * Integer.parseInt(input.substring(0, input.indexOf("-")));
			final int snd = Integer.parseInt(input.substring(input.indexOf("-") + 1, input.length()));
			
			System.out.println(fst + snd);
		}
		
	}
	
}
0