結果

問題 No.49 算数の宿題
ユーザー bambambambam
提出日時 2019-08-22 15:37:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 1,004 bytes
コンパイル時間 2,022 ms
コンパイル使用メモリ 79,836 KB
実行使用メモリ 42,444 KB
最終ジャッジ日時 2024-06-02 07:25:56
合計ジャッジ時間 4,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
42,356 KB
testcase_01 AC 148 ms
42,308 KB
testcase_02 AC 123 ms
41,872 KB
testcase_03 AC 138 ms
42,232 KB
testcase_04 AC 135 ms
42,000 KB
testcase_05 AC 144 ms
42,432 KB
testcase_06 AC 139 ms
42,444 KB
testcase_07 AC 124 ms
41,940 KB
testcase_08 AC 135 ms
42,192 KB
testcase_09 AC 135 ms
41,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static boolean memo[];
	static int ans, min;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		char[] s = sc.next().toCharArray();
		String a = "", b = "";
		int sum = 0;
		int idx = 0;
		for (int i = 0; i < s.length; i++) {
			if (s[i] == '+') {
				i++;
				if (!a.equals("")) {
					sum += Integer.parseInt(a);
				}
				a = "";
				for (; i < s.length; i++) {
					if (s[i] != '*' && s[i] != '+') {
						a += s[i];
					} else {
						i--;
						break;
					}
				}
				sum *= Integer.parseInt(a);
				a = "";
			} else if (s[i] == '*') {
				i++;
				if (!a.equals("")) {
					sum += Integer.parseInt(a);
				}
				a = "";
				for (; i < s.length; i++) {
					if (s[i] != '*' && s[i] != '+') {
						a += s[i];
					} else {
						i--;
						break;
					}
				}
				sum += Integer.parseInt(a);
				a = "";
			} else {
				a += s[i];
			}
		}
		System.out.println(sum);
	}
}
0