結果

問題 No.49 算数の宿題
ユーザー GrenacheGrenache
提出日時 2015-11-03 19:25:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 995 bytes
コンパイル時間 3,109 ms
コンパイル使用メモリ 75,404 KB
実行使用メモリ 41,216 KB
最終ジャッジ日時 2024-06-02 07:11:12
合計ジャッジ時間 4,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,156 KB
testcase_01 AC 103 ms
40,200 KB
testcase_02 AC 109 ms
40,812 KB
testcase_03 AC 101 ms
39,976 KB
testcase_04 AC 101 ms
39,672 KB
testcase_05 AC 110 ms
40,780 KB
testcase_06 AC 109 ms
41,024 KB
testcase_07 AC 110 ms
41,176 KB
testcase_08 AC 110 ms
41,120 KB
testcase_09 AC 100 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder49 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String s = sc.next();
        int ret = 0;
        boolean p = true;
        for (int i = 0; i < s.length(); ) {
        	int plus = s.indexOf('*', i);
        	if (plus == -1) {
        		plus = s.length();
        	}
        	int mul = s.indexOf('+', i);
        	if (mul == -1) {
        		mul = s.length();
        	}
        	int next;
        	if (plus < mul) {
        		next = plus;
        	} else {
        		next = mul;
        	}
        	
        	int tmp = Integer.parseInt(s.substring(i, next));
        	
        	if (p) {
        		ret += tmp;
        	} else {
        		ret *= tmp;
        	}
        	
        	if (next == plus) {
        		p = true;
        	} else {
        		p = false;
        	}
        	
        	i = next + 1;
        }
        
        System.out.println(ret);

        sc.close();
    }
}
0