結果

問題 No.222 引き算と足し算
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-15 18:10:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 884 bytes
コンパイル時間 3,576 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-06-07 22:23:20
合計ジャッジ時間 7,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,976 KB
testcase_01 AC 125 ms
54,036 KB
testcase_02 AC 122 ms
54,104 KB
testcase_03 AC 122 ms
54,120 KB
testcase_04 AC 123 ms
54,120 KB
testcase_05 AC 122 ms
54,260 KB
testcase_06 AC 128 ms
54,148 KB
testcase_07 AC 123 ms
54,160 KB
testcase_08 AC 122 ms
53,864 KB
testcase_09 AC 125 ms
54,092 KB
testcase_10 AC 127 ms
54,180 KB
testcase_11 AC 126 ms
54,048 KB
testcase_12 AC 123 ms
53,988 KB
testcase_13 AC 121 ms
54,100 KB
testcase_14 AC 121 ms
54,056 KB
testcase_15 AC 118 ms
54,280 KB
testcase_16 AC 121 ms
54,240 KB
testcase_17 AC 122 ms
54,260 KB
testcase_18 AC 123 ms
54,096 KB
testcase_19 AC 121 ms
54,116 KB
testcase_20 AC 123 ms
54,116 KB
testcase_21 AC 122 ms
54,220 KB
testcase_22 AC 125 ms
54,164 KB
testcase_23 AC 125 ms
54,052 KB
testcase_24 AC 124 ms
54,368 KB
testcase_25 AC 122 ms
54,196 KB
testcase_26 AC 126 ms
54,048 KB
testcase_27 AC 124 ms
54,012 KB
testcase_28 AC 126 ms
53,972 KB
testcase_29 AC 121 ms
54,128 KB
testcase_30 AC 121 ms
53,996 KB
testcase_31 AC 125 ms
53,832 KB
testcase_32 AC 129 ms
54,004 KB
testcase_33 AC 129 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		
		//まずは、+あるいは-の位置と、それが+か-のどちらなのかを探る
		//左辺が負の場合、それに反応してしまうので、最初の一文字目はスルーする
		char operater = ' ';
		int pos = 0;
		for (int i=0; i<s.length(); i++) {
			if (s.charAt(i)=='+' || s.charAt(i)=='-') {
				if (i==0) {continue;}
				operater = s.charAt(i);
				pos = i;
				break;
			}
		}
		
		//次、演算子の左側と右側とに分ける
		int left = Integer.parseInt(s.substring(0,pos));
		int right = Integer.parseInt(s.substring(pos+1,s.length()));
		
		//出力。演算子の意味を逆にしなければならないことに注意。
		System.out.println(operater=='-'?left+right:left-right);
	}
}
0