結果

問題 No.222 引き算と足し算
ユーザー kuramukuramu
提出日時 2016-02-11 10:05:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 1,032 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 77,224 KB
実行使用メモリ 37,156 KB
最終ジャッジ日時 2024-11-15 22:10:05
合計ジャッジ時間 5,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
36,560 KB
testcase_01 AC 53 ms
36,952 KB
testcase_02 AC 53 ms
36,432 KB
testcase_03 AC 53 ms
36,824 KB
testcase_04 AC 52 ms
36,860 KB
testcase_05 AC 53 ms
36,828 KB
testcase_06 AC 56 ms
36,792 KB
testcase_07 AC 53 ms
36,948 KB
testcase_08 AC 54 ms
36,444 KB
testcase_09 AC 53 ms
36,992 KB
testcase_10 AC 53 ms
36,560 KB
testcase_11 AC 52 ms
36,840 KB
testcase_12 AC 52 ms
36,464 KB
testcase_13 AC 53 ms
36,872 KB
testcase_14 AC 54 ms
36,876 KB
testcase_15 AC 52 ms
36,732 KB
testcase_16 AC 53 ms
36,888 KB
testcase_17 AC 52 ms
36,888 KB
testcase_18 AC 53 ms
37,156 KB
testcase_19 AC 52 ms
36,980 KB
testcase_20 AC 51 ms
36,716 KB
testcase_21 AC 52 ms
36,976 KB
testcase_22 AC 53 ms
36,992 KB
testcase_23 AC 52 ms
36,844 KB
testcase_24 AC 52 ms
36,844 KB
testcase_25 AC 53 ms
37,028 KB
testcase_26 AC 53 ms
36,904 KB
testcase_27 AC 53 ms
36,844 KB
testcase_28 AC 55 ms
36,872 KB
testcase_29 AC 53 ms
36,864 KB
testcase_30 AC 52 ms
36,452 KB
testcase_31 AC 52 ms
36,744 KB
testcase_32 AC 53 ms
36,532 KB
testcase_33 AC 52 ms
36,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
	 public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  String line = stdReader.readLine();
	    	  String op = "";
	    	  int a = 0;
	    	  int b = 0;
	    	  for(int i=1;i<line.length();i++){
	    		  if(line.charAt(i)=='+'){
	    			  op = "+";
	    			  a = Integer.parseInt(line.substring(0,i));
	    			  b = Integer.parseInt(line.substring(i+1,line.length()));
	    			  break;
	    		  }else if(line.charAt(i)=='-'){
	    			  op = "-";
	    			  a = Integer.parseInt(line.substring(0,i));
	    			  b = Integer.parseInt(line.substring(i+1,line.length()));
	    			  break;
	    		  }
	    	  }	    	  
	    	  if(op.equals("+")){
	    		  System.out.println(a-b);
	    	  }else if(op.equals("-")){
	    		  System.out.println(a+b);
	    	  }
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0