結果

問題 No.49 算数の宿題
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 11:19:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 1,060 bytes
コンパイル時間 3,328 ms
コンパイル使用メモリ 77,616 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-06-02 07:20:10
合計ジャッジ時間 5,078 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,172 KB
testcase_01 AC 105 ms
39,756 KB
testcase_02 AC 109 ms
39,756 KB
testcase_03 AC 112 ms
39,944 KB
testcase_04 AC 118 ms
41,164 KB
testcase_05 AC 119 ms
41,304 KB
testcase_06 AC 117 ms
41,028 KB
testcase_07 AC 115 ms
41,060 KB
testcase_08 AC 115 ms
41,024 KB
testcase_09 AC 118 ms
40,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Sansunoshukudai {
	static StringBuilder str = new StringBuilder();

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		str.append(s.nextLine());
		s.close();
		int sum = 0;
		while(str.length() != 0){
			char c = str.charAt(0);
			if(c == '*'){
				str.deleteCharAt(0);
				sum += getnum();
			}else if(c == '+'){
				str.deleteCharAt(0);
				sum *= getnum();
			}else{
				sum += getnum();
			}
		}
		System.out.println(sum);

	}
	static int getnum(){
		int p = str.indexOf("*");
		int m = str.indexOf("+");
		int num = 0;
		if(p != -1 && m != -1){
			num = Integer.parseInt(str.substring(0, Math.min(p, m)));
			str.delete(0, Math.min(p, m));
		}else if(p != -1){
			num = Integer.parseInt(str.substring(0, p));
			str.delete(0, p);
		}else if(m != -1){
			num = Integer.parseInt(str.substring(0, m));
			str.delete(0, m);
		}else{
			num = Integer.parseInt(str.toString());
			str.delete(0, str.length());
		}
		return num;
	}

}
0