結果

問題 No.222 引き算と足し算
ユーザー tsunabittsunabit
提出日時 2020-03-16 19:25:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 1,000 ms
コード長 1,010 bytes
コンパイル時間 3,715 ms
コンパイル使用メモリ 77,700 KB
実行使用メモリ 41,260 KB
最終ジャッジ日時 2024-05-06 01:09:03
合計ジャッジ時間 8,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,148 KB
testcase_01 AC 115 ms
40,776 KB
testcase_02 AC 113 ms
41,052 KB
testcase_03 AC 113 ms
41,152 KB
testcase_04 AC 115 ms
40,864 KB
testcase_05 AC 109 ms
41,260 KB
testcase_06 AC 104 ms
40,940 KB
testcase_07 AC 103 ms
41,120 KB
testcase_08 AC 98 ms
40,176 KB
testcase_09 AC 115 ms
40,772 KB
testcase_10 AC 98 ms
40,036 KB
testcase_11 AC 105 ms
40,936 KB
testcase_12 AC 116 ms
41,100 KB
testcase_13 AC 114 ms
40,992 KB
testcase_14 AC 106 ms
40,204 KB
testcase_15 AC 114 ms
40,952 KB
testcase_16 AC 97 ms
40,212 KB
testcase_17 AC 95 ms
39,872 KB
testcase_18 AC 95 ms
39,976 KB
testcase_19 AC 107 ms
41,032 KB
testcase_20 AC 103 ms
40,680 KB
testcase_21 AC 106 ms
41,140 KB
testcase_22 AC 105 ms
41,008 KB
testcase_23 AC 107 ms
41,016 KB
testcase_24 AC 107 ms
40,976 KB
testcase_25 AC 104 ms
40,736 KB
testcase_26 AC 106 ms
41,152 KB
testcase_27 AC 106 ms
41,096 KB
testcase_28 AC 107 ms
41,124 KB
testcase_29 AC 110 ms
41,164 KB
testcase_30 AC 110 ms
41,156 KB
testcase_31 AC 114 ms
41,008 KB
testcase_32 AC 107 ms
41,132 KB
testcase_33 AC 109 ms
40,864 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