結果

問題 No.49 算数の宿題
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-17 22:55:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 996 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 78,976 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-06-02 07:21:47
合計ジャッジ時間 3,772 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,280 KB
testcase_01 AC 118 ms
41,096 KB
testcase_02 AC 115 ms
41,000 KB
testcase_03 AC 100 ms
39,768 KB
testcase_04 AC 115 ms
41,180 KB
testcase_05 AC 111 ms
41,016 KB
testcase_06 AC 110 ms
41,296 KB
testcase_07 AC 108 ms
41,280 KB
testcase_08 AC 111 ms
41,288 KB
testcase_09 AC 113 ms
40,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		//変数と配列を宣言
		String s = sc.next();
		List<Integer> num = new ArrayList<>();
		List<String> operator = new ArrayList<>();
		StringBuilder sb = new StringBuilder();
		
		//数値と演算子をそれぞれのリストに格納
		for (int i=0; i<s.length(); i++) {
			char c = s.charAt(i);
			if (c!='*' && c!='+') {sb.append(c);}
			else if (c=='*' || c=='+') {
				num.add(Integer.parseInt(sb.toString()));
				operator.add(String.valueOf(c));
				sb.setLength(0);
			}
		}
		num.add(Integer.parseInt(sb.toString()));
		
		//最初の数値を解答用変数に入れる
		long ans = num.get(0);
		
		//リストを回しながら計算
		for (int i=0; i<operator.size(); i++) {
			if (operator.get(i).equals("*")) {ans += num.get(i+1);}
			else if (operator.get(i).equals("+")) {ans *= num.get(i+1);}
		}
		
		//出力
		System.out.println(ans);
	}
}
0