結果

問題 No.222 引き算と足し算
ユーザー spacenautspacenaut
提出日時 2016-05-23 21:27:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 1,000 ms
コード長 540 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 74,928 KB
実行使用メモリ 41,116 KB
最終ジャッジ日時 2024-04-27 17:53:13
合計ジャッジ時間 6,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,852 KB
testcase_01 AC 99 ms
41,012 KB
testcase_02 AC 103 ms
41,116 KB
testcase_03 AC 106 ms
40,872 KB
testcase_04 AC 107 ms
41,008 KB
testcase_05 AC 106 ms
41,048 KB
testcase_06 AC 112 ms
40,908 KB
testcase_07 AC 110 ms
40,644 KB
testcase_08 AC 104 ms
40,508 KB
testcase_09 AC 104 ms
40,568 KB
testcase_10 AC 108 ms
40,748 KB
testcase_11 AC 94 ms
39,736 KB
testcase_12 AC 103 ms
40,876 KB
testcase_13 AC 112 ms
41,040 KB
testcase_14 AC 101 ms
40,808 KB
testcase_15 AC 93 ms
40,284 KB
testcase_16 AC 99 ms
40,944 KB
testcase_17 AC 92 ms
40,152 KB
testcase_18 AC 99 ms
40,552 KB
testcase_19 AC 111 ms
40,968 KB
testcase_20 AC 108 ms
40,876 KB
testcase_21 AC 100 ms
41,044 KB
testcase_22 AC 100 ms
40,592 KB
testcase_23 AC 102 ms
40,900 KB
testcase_24 AC 113 ms
40,692 KB
testcase_25 AC 94 ms
40,032 KB
testcase_26 AC 101 ms
40,928 KB
testcase_27 AC 102 ms
40,908 KB
testcase_28 AC 99 ms
41,016 KB
testcase_29 AC 101 ms
40,864 KB
testcase_30 AC 99 ms
40,348 KB
testcase_31 AC 90 ms
39,544 KB
testcase_32 AC 101 ms
40,832 KB
testcase_33 AC 104 ms
40,924 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