結果

問題 No.222 引き算と足し算
ユーザー gu_21816943gu_21816943
提出日時 2017-06-28 22:18:35
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 710 bytes
コンパイル時間 1,658 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 53,284 KB
最終ジャッジ日時 2024-10-04 14:59:55
合計ジャッジ時間 4,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
50,464 KB
testcase_01 AC 45 ms
50,372 KB
testcase_02 AC 45 ms
50,436 KB
testcase_03 AC 45 ms
50,180 KB
testcase_04 AC 46 ms
50,056 KB
testcase_05 AC 47 ms
50,216 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 45 ms
50,124 KB
testcase_10 AC 45 ms
50,360 KB
testcase_11 AC 45 ms
50,108 KB
testcase_12 RE -
testcase_13 AC 45 ms
50,492 KB
testcase_14 RE -
testcase_15 AC 46 ms
50,320 KB
testcase_16 AC 46 ms
50,428 KB
testcase_17 AC 45 ms
50,448 KB
testcase_18 RE -
testcase_19 AC 45 ms
50,080 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 47 ms
50,468 KB
testcase_24 RE -
testcase_25 AC 45 ms
50,420 KB
testcase_26 AC 45 ms
50,312 KB
testcase_27 RE -
testcase_28 AC 45 ms
50,564 KB
testcase_29 RE -
testcase_30 AC 44 ms
50,148 KB
testcase_31 AC 44 ms
50,600 KB
testcase_32 AC 45 ms
50,512 KB
testcase_33 AC 45 ms
50,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;

class Main {
	static PrintWriter out = new PrintWriter(System.out);
	static String str;

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String str = br.readLine();
		br.close();

		int index = str.indexOf("+");
		if (index > 0) {
			System.out.println(Integer.parseInt(str.substring(0, index)) - Integer.parseInt(str.substring(index + 1)));
		}else{
			index=str.indexOf("-");
			System.out.println(Integer.parseInt(str.substring(0, index)) + Integer.parseInt(str.substring(index + 1)));
		}
	}
}
0