結果

問題 No.222 引き算と足し算
ユーザー rf141rf141
提出日時 2015-06-28 17:50:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 510 bytes
コンパイル時間 3,612 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-11-15 21:58:40
合計ジャッジ時間 9,203 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,352 KB
testcase_01 AC 118 ms
41,644 KB
testcase_02 AC 117 ms
41,240 KB
testcase_03 AC 120 ms
41,644 KB
testcase_04 AC 121 ms
41,224 KB
testcase_05 AC 122 ms
41,464 KB
testcase_06 AC 122 ms
41,380 KB
testcase_07 AC 118 ms
41,332 KB
testcase_08 AC 119 ms
41,224 KB
testcase_09 AC 120 ms
41,152 KB
testcase_10 AC 120 ms
41,384 KB
testcase_11 AC 108 ms
40,364 KB
testcase_12 AC 119 ms
41,508 KB
testcase_13 AC 118 ms
41,500 KB
testcase_14 AC 122 ms
41,108 KB
testcase_15 AC 120 ms
41,584 KB
testcase_16 AC 119 ms
41,436 KB
testcase_17 AC 120 ms
41,512 KB
testcase_18 AC 119 ms
41,280 KB
testcase_19 AC 121 ms
41,156 KB
testcase_20 AC 118 ms
41,440 KB
testcase_21 AC 121 ms
41,452 KB
testcase_22 AC 117 ms
41,508 KB
testcase_23 AC 105 ms
39,900 KB
testcase_24 AC 123 ms
41,088 KB
testcase_25 AC 123 ms
41,048 KB
testcase_26 AC 122 ms
41,244 KB
testcase_27 AC 122 ms
41,080 KB
testcase_28 AC 123 ms
41,528 KB
testcase_29 AC 121 ms
41,368 KB
testcase_30 AC 120 ms
41,624 KB
testcase_31 AC 119 ms
41,256 KB
testcase_32 AC 109 ms
40,308 KB
testcase_33 AC 120 ms
41,196 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