結果

問題 No.49 算数の宿題
ユーザー mosmos_21mosmos_21
提出日時 2017-06-18 21:20:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 546 bytes
コンパイル時間 2,490 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-12-23 01:57:25
合計ジャッジ時間 4,289 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,388 KB
testcase_01 AC 133 ms
41,240 KB
testcase_02 AC 134 ms
41,056 KB
testcase_03 AC 139 ms
41,008 KB
testcase_04 AC 121 ms
40,092 KB
testcase_05 AC 138 ms
40,968 KB
testcase_06 AC 133 ms
41,340 KB
testcase_07 AC 135 ms
41,176 KB
testcase_08 AC 136 ms
41,284 KB
testcase_09 AC 138 ms
41,088 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