結果

問題 No.222 引き算と足し算
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 04:21:32
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 929 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 56,252 KB
最終ジャッジ日時 2024-11-26 02:06:22
合計ジャッジ時間 7,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,236 KB
testcase_01 AC 110 ms
40,008 KB
testcase_02 AC 121 ms
41,012 KB
testcase_03 RE -
testcase_04 AC 127 ms
41,240 KB
testcase_05 RE -
testcase_06 AC 121 ms
41,192 KB
testcase_07 AC 115 ms
40,048 KB
testcase_08 AC 128 ms
41,512 KB
testcase_09 AC 127 ms
41,612 KB
testcase_10 AC 124 ms
41,352 KB
testcase_11 RE -
testcase_12 AC 122 ms
41,404 KB
testcase_13 AC 121 ms
41,020 KB
testcase_14 AC 121 ms
41,196 KB
testcase_15 RE -
testcase_16 AC 121 ms
41,176 KB
testcase_17 RE -
testcase_18 AC 120 ms
41,280 KB
testcase_19 AC 120 ms
41,472 KB
testcase_20 AC 131 ms
41,052 KB
testcase_21 AC 113 ms
40,192 KB
testcase_22 AC 118 ms
40,312 KB
testcase_23 RE -
testcase_24 AC 130 ms
41,312 KB
testcase_25 RE -
testcase_26 AC 133 ms
41,040 KB
testcase_27 AC 132 ms
41,256 KB
testcase_28 RE -
testcase_29 AC 131 ms
41,160 KB
testcase_30 AC 128 ms
41,168 KB
testcase_31 AC 127 ms
41,332 KB
testcase_32 AC 113 ms
39,784 KB
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String xopy = sc.next();
        int z = ind(xopy);
        int x = Integer.parseInt( xopy.substring(0,z) );
        int y = Integer.parseInt( xopy.substring(z+1) );
        String op = xopy.substring(z,z+1);
        int r =0;
        if( op.equals("+") ){
            r = x-y;
        }else{
            r = x+y;
        }
        System.out.println(r);
    }
    static int ind(String S){
        int n = S.indexOf("+");
        if(n==-1){
            n=Integer.MAX_VALUE;
        }else if(n==0){
            S=S.substring(1);
            n=S.indexOf("+")+1;
        }
        int m = S.indexOf("-");
        if(m==-1){
            m=Integer.MAX_VALUE;
        }else if(m==0){
            S=S.substring(1);
            m=S.indexOf("-")+1;
        }
        return Math.min(n,m);
    }
}

0