結果

問題 No.222 引き算と足し算
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 04:13:46
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 753 bytes
コンパイル時間 1,829 ms
コンパイル使用メモリ 75,536 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-11-26 02:06:11
合計ジャッジ時間 6,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
52,504 KB
testcase_01 AC 95 ms
52,828 KB
testcase_02 AC 100 ms
53,944 KB
testcase_03 AC 111 ms
54,028 KB
testcase_04 AC 99 ms
52,148 KB
testcase_05 AC 116 ms
54,416 KB
testcase_06 RE -
testcase_07 AC 101 ms
53,748 KB
testcase_08 RE -
testcase_09 AC 94 ms
52,148 KB
testcase_10 AC 102 ms
52,900 KB
testcase_11 AC 114 ms
54,000 KB
testcase_12 RE -
testcase_13 AC 114 ms
53,932 KB
testcase_14 RE -
testcase_15 AC 100 ms
52,468 KB
testcase_16 AC 113 ms
53,412 KB
testcase_17 AC 109 ms
53,552 KB
testcase_18 RE -
testcase_19 AC 98 ms
52,684 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 103 ms
52,644 KB
testcase_24 RE -
testcase_25 AC 100 ms
52,888 KB
testcase_26 AC 111 ms
53,880 KB
testcase_27 RE -
testcase_28 AC 114 ms
53,652 KB
testcase_29 AC 104 ms
52,436 KB
testcase_30 AC 111 ms
53,608 KB
testcase_31 AC 111 ms
53,612 KB
testcase_32 AC 99 ms
52,932 KB
testcase_33 AC 102 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

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<=0){
            n=Integer.MAX_VALUE;
        }
        int m = S.indexOf("-");
        if(m<=0){
            m=Integer.MAX_VALUE;
        }
        return Math.min(n,m);
    }
}
0