結果

問題 No.222 引き算と足し算
ユーザー YamaKasaYamaKasa
提出日時 2018-09-01 19:17:35
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 934 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 77,456 KB
実行使用メモリ 56,128 KB
最終ジャッジ日時 2024-09-19 17:31:37
合計ジャッジ時間 6,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,052 KB
testcase_01 AC 115 ms
54,500 KB
testcase_02 AC 117 ms
53,832 KB
testcase_03 AC 111 ms
53,944 KB
testcase_04 AC 96 ms
52,620 KB
testcase_05 RE -
testcase_06 AC 118 ms
53,844 KB
testcase_07 AC 116 ms
54,092 KB
testcase_08 RE -
testcase_09 AC 115 ms
54,004 KB
testcase_10 AC 113 ms
54,216 KB
testcase_11 RE -
testcase_12 AC 111 ms
53,728 KB
testcase_13 AC 116 ms
53,728 KB
testcase_14 RE -
testcase_15 AC 110 ms
53,856 KB
testcase_16 AC 98 ms
52,720 KB
testcase_17 RE -
testcase_18 AC 115 ms
54,048 KB
testcase_19 AC 109 ms
53,868 KB
testcase_20 RE -
testcase_21 AC 114 ms
54,288 KB
testcase_22 RE -
testcase_23 AC 118 ms
54,120 KB
testcase_24 AC 107 ms
54,112 KB
testcase_25 RE -
testcase_26 AC 115 ms
53,588 KB
testcase_27 AC 113 ms
53,820 KB
testcase_28 RE -
testcase_29 AC 113 ms
53,984 KB
testcase_30 AC 116 ms
53,980 KB
testcase_31 AC 115 ms
54,288 KB
testcase_32 AC 113 ms
54,076 KB
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String s = scan.next();
		scan.close();
		int l = s.length();
		int x = 0;
		int y = 0;
		int a = 0;

		if(s.charAt(0) == '-') {
			a = 1;
		}
		char c2 = '+';

		int b = 0;
		for(int i = a; i < l; i++) {
			if(s.charAt(i) == '-' || s.charAt(i) == '+') {
				x = Integer.parseInt(s.substring(a, i));
				if(s.charAt(i + 1) == '+') {
					b = i;
					c2 = s.charAt(i);
					y = Integer.parseInt(s.substring(b + 2, l));
					break;
				}else if(s.charAt(i + 1) == '-' ){
					b = i;
					c2 = s.charAt(i);
					y = -Integer.parseInt(s.substring(b + 2, l));
					break;
				}
				b = i;
				c2 = s.charAt(i);
				y = Integer.parseInt(s.substring(b + 1, l));
				break;
			}
		}
		if(a == 1) {
			x = - x;
		}
		if(c2 == '+') {
			System.out.println(x - y);
		}else {
			System.out.println(x + y);
		}
	}
}
0