結果

問題 No.222 引き算と足し算
ユーザー sue_charosue_charo
提出日時 2017-04-27 17:18:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 698 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 75,788 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-09-13 14:50:24
合計ジャッジ時間 7,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,064 KB
testcase_01 AC 126 ms
53,748 KB
testcase_02 AC 127 ms
54,060 KB
testcase_03 AC 125 ms
54,248 KB
testcase_04 AC 125 ms
54,148 KB
testcase_05 AC 109 ms
53,000 KB
testcase_06 AC 127 ms
53,944 KB
testcase_07 AC 129 ms
54,352 KB
testcase_08 AC 127 ms
54,104 KB
testcase_09 AC 126 ms
54,120 KB
testcase_10 AC 124 ms
54,056 KB
testcase_11 AC 128 ms
53,900 KB
testcase_12 AC 127 ms
53,984 KB
testcase_13 AC 124 ms
54,032 KB
testcase_14 AC 127 ms
53,888 KB
testcase_15 AC 124 ms
53,956 KB
testcase_16 AC 124 ms
54,060 KB
testcase_17 AC 125 ms
54,124 KB
testcase_18 AC 124 ms
53,752 KB
testcase_19 AC 127 ms
53,764 KB
testcase_20 AC 121 ms
54,152 KB
testcase_21 AC 128 ms
53,960 KB
testcase_22 AC 124 ms
53,868 KB
testcase_23 AC 124 ms
53,980 KB
testcase_24 AC 128 ms
54,016 KB
testcase_25 AC 125 ms
53,956 KB
testcase_26 AC 128 ms
53,716 KB
testcase_27 AC 126 ms
54,108 KB
testcase_28 AC 126 ms
53,840 KB
testcase_29 AC 124 ms
54,180 KB
testcase_30 AC 126 ms
53,972 KB
testcase_31 AC 127 ms
54,128 KB
testcase_32 AC 126 ms
54,212 KB
testcase_33 AC 126 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String get = sc.next();
        int count = 0;

        for (int i = 1; i < get.length(); i++) {
            if (! Character.isDigit(get.charAt(i))) {
                count = i;
                break;
            }
        }

        int a = Integer.parseInt(get.substring(0, count));
        int b = Integer.parseInt(get.substring(count + 1, get.length()));
        char op = get.charAt(count);

        int ans;

        if (op == '+') {
            ans = a - b;
        } else {
            ans = a + b;
        }

        System.out.println(ans);
    }
}
0