結果

問題 No.222 引き算と足し算
ユーザー spacenautspacenaut
提出日時 2016-05-23 21:27:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 540 bytes
コンパイル時間 1,933 ms
コンパイル使用メモリ 81,016 KB
実行使用メモリ 41,900 KB
最終ジャッジ日時 2024-11-15 22:11:44
合計ジャッジ時間 7,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,012 KB
testcase_01 AC 123 ms
41,320 KB
testcase_02 AC 126 ms
41,060 KB
testcase_03 AC 124 ms
41,264 KB
testcase_04 AC 123 ms
41,528 KB
testcase_05 AC 115 ms
40,716 KB
testcase_06 AC 124 ms
41,492 KB
testcase_07 AC 127 ms
41,220 KB
testcase_08 AC 126 ms
41,900 KB
testcase_09 AC 123 ms
41,272 KB
testcase_10 AC 124 ms
41,496 KB
testcase_11 AC 125 ms
41,256 KB
testcase_12 AC 126 ms
41,232 KB
testcase_13 AC 123 ms
41,380 KB
testcase_14 AC 130 ms
41,224 KB
testcase_15 AC 130 ms
41,168 KB
testcase_16 AC 128 ms
41,456 KB
testcase_17 AC 130 ms
41,040 KB
testcase_18 AC 128 ms
41,808 KB
testcase_19 AC 128 ms
41,244 KB
testcase_20 AC 127 ms
41,440 KB
testcase_21 AC 127 ms
41,248 KB
testcase_22 AC 125 ms
41,204 KB
testcase_23 AC 128 ms
41,160 KB
testcase_24 AC 129 ms
41,160 KB
testcase_25 AC 129 ms
41,032 KB
testcase_26 AC 130 ms
41,544 KB
testcase_27 AC 124 ms
41,540 KB
testcase_28 AC 128 ms
41,328 KB
testcase_29 AC 128 ms
41,188 KB
testcase_30 AC 126 ms
41,156 KB
testcase_31 AC 130 ms
41,312 KB
testcase_32 AC 125 ms
41,336 KB
testcase_33 AC 121 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0222{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		int a = 0;
		int b = 0;
		int res = 0;
		int cnt = 0;
		char op = 0;

		for(int i = 1; i < str.length(); i++){
			if(str.charAt(i) == '+' || str.charAt(i) == '-'){
				a = Integer.parseInt(str.substring(0, i));
				op = str.charAt(i);
				b = Integer.parseInt(str.substring(i + 1));
				break;
			}
		}

		if(op == '+'){
			res = a - b;
		}else{
			res = a + b;
		}
		System.out.println(res);
	}
}
0