結果

問題 No.49 算数の宿題
ユーザー YamaKasaYamaKasa
提出日時 2018-06-24 18:02:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 977 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 77,676 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-06-02 07:22:23
合計ジャッジ時間 3,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
39,952 KB
testcase_01 AC 96 ms
40,016 KB
testcase_02 AC 112 ms
41,640 KB
testcase_03 AC 114 ms
41,264 KB
testcase_04 AC 101 ms
40,080 KB
testcase_05 AC 106 ms
40,332 KB
testcase_06 AC 114 ms
41,204 KB
testcase_07 AC 101 ms
40,000 KB
testcase_08 AC 98 ms
39,840 KB
testcase_09 AC 101 ms
40,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		ArrayList<Integer> list = new ArrayList<Integer>();
		ArrayList<String> ope = new ArrayList<String>();
		int begin = 0;
		for(int i = 0; i < S.length(); i++) {
			String o = S.substring(i, i + 1);
			if(o.equals("*") || o.equals("+")) {
				ope.add(o);
				list.add(Integer.parseInt(S.substring(begin, i)));
				begin = i + 1;
			}else {
				if(i == S.length() - 1) {
					list.add(Integer.parseInt(S.substring(begin, i + 1)));
				}
			}
		}
//		for(int n : list) {
//			System.out.println(n);
//		}
//		for(String o : ope) {
//			System.out.println(o);
//		}
		int ans = list.get(0);
		for(int i = 0; i < ope.size(); i++) {
			if(ope.get(i).equals("*")) {
				ans = ans + list.get(i + 1);
			}else {
				ans = ans * list.get(i + 1);
			}
		}
		System.out.println(ans);
	}
}
0