結果

問題 No.222 引き算と足し算
ユーザー kou6839kou6839
提出日時 2015-06-06 00:29:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 652 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-11-15 21:29:58
合計ジャッジ時間 7,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,108 KB
testcase_01 AC 123 ms
41,224 KB
testcase_02 AC 122 ms
41,000 KB
testcase_03 AC 110 ms
40,168 KB
testcase_04 AC 122 ms
41,056 KB
testcase_05 AC 111 ms
40,936 KB
testcase_06 AC 123 ms
41,332 KB
testcase_07 AC 123 ms
41,460 KB
testcase_08 AC 122 ms
41,400 KB
testcase_09 AC 119 ms
40,988 KB
testcase_10 AC 124 ms
41,240 KB
testcase_11 AC 124 ms
41,116 KB
testcase_12 AC 122 ms
41,304 KB
testcase_13 AC 123 ms
41,016 KB
testcase_14 AC 109 ms
41,140 KB
testcase_15 AC 123 ms
40,756 KB
testcase_16 AC 124 ms
41,140 KB
testcase_17 AC 124 ms
41,144 KB
testcase_18 AC 127 ms
41,320 KB
testcase_19 AC 123 ms
41,252 KB
testcase_20 AC 121 ms
41,140 KB
testcase_21 AC 121 ms
40,844 KB
testcase_22 AC 112 ms
39,912 KB
testcase_23 AC 121 ms
41,356 KB
testcase_24 AC 126 ms
41,060 KB
testcase_25 AC 123 ms
41,220 KB
testcase_26 AC 121 ms
41,036 KB
testcase_27 AC 122 ms
41,188 KB
testcase_28 AC 110 ms
40,232 KB
testcase_29 AC 119 ms
41,088 KB
testcase_30 AC 122 ms
41,240 KB
testcase_31 AC 122 ms
40,904 KB
testcase_32 AC 109 ms
40,128 KB
testcase_33 AC 122 ms
41,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args){
        // TODO 自動生成されたメソッド・スタブ
        Scanner sc = new Scanner(System.in);
        String in = sc.next();
        int p = 0;
        for(int i=1;i<in.length();i++){
        	if(!Character.isDigit(in.charAt(i))){
        		p=i;
        		break;
        	}
        }
        int a = Integer.parseInt(in.substring(0, p));
        int b = Integer.parseInt(in.substring(p+1, in.length()));
        if(in.charAt(p)=='-'){
        	System.out.println(a+b);
        }else{
        	System.out.println(a-b);
        }
    }
}
0