結果

問題 No.222 引き算と足し算
ユーザー rf141rf141
提出日時 2015-06-28 17:51:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 500 bytes
コンパイル時間 3,581 ms
コンパイル使用メモリ 83,524 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-11-15 21:58:50
合計ジャッジ時間 8,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,996 KB
testcase_01 AC 123 ms
41,148 KB
testcase_02 AC 124 ms
40,992 KB
testcase_03 AC 124 ms
41,136 KB
testcase_04 AC 124 ms
41,132 KB
testcase_05 AC 111 ms
39,912 KB
testcase_06 AC 122 ms
41,016 KB
testcase_07 AC 124 ms
41,072 KB
testcase_08 AC 123 ms
40,932 KB
testcase_09 AC 123 ms
41,396 KB
testcase_10 AC 123 ms
41,140 KB
testcase_11 AC 111 ms
40,140 KB
testcase_12 AC 128 ms
41,172 KB
testcase_13 AC 122 ms
41,076 KB
testcase_14 AC 122 ms
41,028 KB
testcase_15 AC 123 ms
41,364 KB
testcase_16 AC 126 ms
41,168 KB
testcase_17 AC 125 ms
40,924 KB
testcase_18 AC 124 ms
41,048 KB
testcase_19 AC 122 ms
40,996 KB
testcase_20 AC 123 ms
41,000 KB
testcase_21 AC 122 ms
41,284 KB
testcase_22 AC 119 ms
40,648 KB
testcase_23 AC 123 ms
41,124 KB
testcase_24 AC 123 ms
41,000 KB
testcase_25 AC 121 ms
41,256 KB
testcase_26 AC 124 ms
41,396 KB
testcase_27 AC 122 ms
41,352 KB
testcase_28 AC 109 ms
39,732 KB
testcase_29 AC 122 ms
41,268 KB
testcase_30 AC 120 ms
41,152 KB
testcase_31 AC 122 ms
41,268 KB
testcase_32 AC 122 ms
41,096 KB
testcase_33 AC 123 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class CalcPlusMinus {
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		String get = scan.next();
		int count = 0;
		
	    for(int i = 1; i<get.length(); i++){
			if(!Character.isDigit(get.charAt(i))){
					count = i;
					break;
			}
		}
	    
	    int a = Integer.parseInt(get.substring(0,count));
	    int b = Integer.parseInt(get.substring(count+1, get.length()));
	    
		System.out.println((get.charAt(count)=='+')?(a-b):(a+b));
	}
}
0