結果

問題 No.49 算数の宿題
ユーザー samplelpmassamplelpmas
提出日時 2017-02-02 18:19:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 1,046 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-06-02 07:18:11
合計ジャッジ時間 3,899 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,116 KB
testcase_01 AC 128 ms
54,120 KB
testcase_02 AC 123 ms
53,888 KB
testcase_03 AC 124 ms
53,992 KB
testcase_04 AC 128 ms
53,864 KB
testcase_05 AC 128 ms
53,980 KB
testcase_06 AC 120 ms
54,116 KB
testcase_07 AC 125 ms
53,968 KB
testcase_08 AC 122 ms
53,920 KB
testcase_09 AC 126 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String input = sc.next();

        int operand = 0;
        int answer = 0;
        char operation = ' ';

        for (int i = 0; i < input.length(); i++) {

            char c = input.charAt(i);

            if ('0' <= c && c <= '9') {

                operand = operand * 10 + c - '0';

            } else if (c == '*'  || c == '+') {

                if (operation == '*' || operation == ' ') {

                    answer += operand;
                    operand = 0;
                    operation = c;

                } else if (operation == '+') {

                    answer *= operand;
                    operand = 0;
                    operation = c;

                }

            }

        }

        if (operation == '*') {
            answer += operand;
        } else if (operation == '+'){
            answer *= operand;
        }

        System.out.println(answer);

    }

}
0