結果

問題 No.222 引き算と足し算
ユーザー tsunabittsunabit
提出日時 2020-03-16 19:25:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 1,010 bytes
コンパイル時間 3,841 ms
コンパイル使用メモリ 78,292 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-11-28 03:00:03
合計ジャッジ時間 10,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,904 KB
testcase_01 AC 115 ms
40,064 KB
testcase_02 AC 111 ms
40,252 KB
testcase_03 AC 128 ms
41,344 KB
testcase_04 AC 132 ms
41,292 KB
testcase_05 AC 131 ms
40,960 KB
testcase_06 AC 126 ms
40,984 KB
testcase_07 AC 129 ms
41,228 KB
testcase_08 AC 126 ms
40,896 KB
testcase_09 AC 124 ms
41,092 KB
testcase_10 AC 128 ms
40,888 KB
testcase_11 AC 125 ms
41,068 KB
testcase_12 AC 123 ms
41,104 KB
testcase_13 AC 126 ms
41,168 KB
testcase_14 AC 129 ms
41,208 KB
testcase_15 AC 129 ms
40,940 KB
testcase_16 AC 129 ms
41,164 KB
testcase_17 AC 126 ms
41,588 KB
testcase_18 AC 127 ms
40,796 KB
testcase_19 AC 130 ms
40,944 KB
testcase_20 AC 130 ms
41,280 KB
testcase_21 AC 130 ms
41,256 KB
testcase_22 AC 113 ms
39,780 KB
testcase_23 AC 127 ms
41,260 KB
testcase_24 AC 117 ms
39,924 KB
testcase_25 AC 139 ms
41,204 KB
testcase_26 AC 139 ms
40,832 KB
testcase_27 AC 131 ms
41,316 KB
testcase_28 AC 129 ms
41,004 KB
testcase_29 AC 129 ms
40,828 KB
testcase_30 AC 131 ms
41,144 KB
testcase_31 AC 115 ms
39,848 KB
testcase_32 AC 127 ms
40,984 KB
testcase_33 AC 126 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No222 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int k = 0;
		for(int i = 1; i < s.length(); i++) {
			if(s.charAt(i) == '+' || s.charAt(i) == '-') {
				if(s.charAt(i-1) != '+' && s.charAt(i-1) != '-') {
					k = i;
				}
			}
		}
		int sa = 0;
		if(s.charAt(0) == '-') {
			sa = -1 * Integer.parseInt(s.substring(1, k));
		}else if(s.charAt(0) == '+') {
			sa = Integer.parseInt(s.substring(1, k));
		}else {
			sa = Integer.parseInt(s.substring(0, k));
		}
		
		int u = 0;
		if(s.charAt(k+1) == '-') {
			u = -1 * Integer.parseInt(s.substring(k+2));
		}else if(s.charAt(k+1) == '+') {
			u = Integer.parseInt(s.substring(k+2));
		}else {
			u = Integer.parseInt(s.substring(k+1));
		}
		
		if(s.charAt(k) == '+') {
			if(u < 0) {
				u = -1 * u;
				System.out.println(sa + u);
			}else {
				System.out.println(sa - u);
			}
		}
		else System.out.println(sa + u);
	}
}
0