結果

問題 No.222 引き算と足し算
ユーザー YamaKasaYamaKasa
提出日時 2018-09-01 19:32:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 1,000 ms
コード長 989 bytes
コンパイル時間 1,830 ms
コンパイル使用メモリ 78,056 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-09-19 17:49:57
合計ジャッジ時間 6,421 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,776 KB
testcase_01 AC 100 ms
52,644 KB
testcase_02 AC 100 ms
52,796 KB
testcase_03 AC 110 ms
53,752 KB
testcase_04 AC 110 ms
54,128 KB
testcase_05 AC 112 ms
54,188 KB
testcase_06 AC 108 ms
54,064 KB
testcase_07 AC 108 ms
53,760 KB
testcase_08 AC 100 ms
52,560 KB
testcase_09 AC 95 ms
52,732 KB
testcase_10 AC 99 ms
52,828 KB
testcase_11 AC 111 ms
54,072 KB
testcase_12 AC 95 ms
52,532 KB
testcase_13 AC 106 ms
52,748 KB
testcase_14 AC 102 ms
54,064 KB
testcase_15 AC 108 ms
53,836 KB
testcase_16 AC 103 ms
53,072 KB
testcase_17 AC 96 ms
52,548 KB
testcase_18 AC 108 ms
53,860 KB
testcase_19 AC 95 ms
52,556 KB
testcase_20 AC 115 ms
53,864 KB
testcase_21 AC 95 ms
53,048 KB
testcase_22 AC 111 ms
53,816 KB
testcase_23 AC 104 ms
53,328 KB
testcase_24 AC 109 ms
53,916 KB
testcase_25 AC 109 ms
53,872 KB
testcase_26 AC 110 ms
53,748 KB
testcase_27 AC 97 ms
53,012 KB
testcase_28 AC 117 ms
54,040 KB
testcase_29 AC 106 ms
53,312 KB
testcase_30 AC 112 ms
53,876 KB
testcase_31 AC 101 ms
52,804 KB
testcase_32 AC 110 ms
53,916 KB
testcase_33 AC 111 ms
53,712 KB
権限があれば一括ダウンロードができます

ソースコード

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;
		}else 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(s.charAt(0) == '-') {
			x = - x;
		}
		if(c2 == '+') {
			System.out.println(x - y);
		}else {
			System.out.println(x + y);
		}
	}
}
0