結果

問題 No.49 算数の宿題
ユーザー mosmos_21mosmos_21
提出日時 2017-06-18 21:20:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 546 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 74,692 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-06-02 07:20:35
合計ジャッジ時間 3,637 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
53,460 KB
testcase_01 AC 115 ms
54,008 KB
testcase_02 AC 110 ms
54,048 KB
testcase_03 AC 112 ms
53,652 KB
testcase_04 AC 112 ms
52,568 KB
testcase_05 AC 98 ms
52,620 KB
testcase_06 AC 99 ms
52,956 KB
testcase_07 AC 113 ms
54,080 KB
testcase_08 AC 123 ms
54,232 KB
testcase_09 AC 124 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
    static Scanner in = new Scanner(System.in);
    public static void main(String[] args) {
        String[] s = in.nextLine().replaceAll("(\\+|\\*)", "_$1_").split("_");
        int sum = Integer.parseInt(s[0]);
        for(int i = 1; i < s.length; i += 2){
            if(s[i].equals("+")){
                sum *= Integer.parseInt(s[i + 1]);
            }else if(s[i].equals("*")){
                sum += Integer.parseInt(s[i + 1]);
            }
        }
        System.out.println(sum);
    }
}
0