結果

問題 No.49 算数の宿題
ユーザー villachvillach
提出日時 2017-10-12 09:31:25
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 1,053 bytes
コンパイル時間 3,699 ms
コンパイル使用メモリ 78,060 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-12-23 01:58:16
合計ジャッジ時間 5,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
40,996 KB
testcase_01 AC 139 ms
41,432 KB
testcase_02 AC 135 ms
41,268 KB
testcase_03 AC 135 ms
41,420 KB
testcase_04 AC 127 ms
41,288 KB
testcase_05 AC 137 ms
41,088 KB
testcase_06 AC 136 ms
41,424 KB
testcase_07 AC 138 ms
40,972 KB
testcase_08 AC 137 ms
41,692 KB
testcase_09 AC 138 ms
40,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N49 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String eq = sc.nextLine();
		int op = 0;
		int left_op = 0;
		int right_op = 0;
		int result = 0;
		int flag = 0;
		for(int i = 0;i < eq.length() + 1;++i){
			if(i == eq.length()){
				if(op == 1){
					left_op += right_op;
				}else if(op == 2){
					left_op *= right_op;
				}
				right_op = 0;
				break;
			}else if(eq.charAt(i) == 42){
				if(op == 1){
					left_op += right_op;
				}else if(op == 2){
					left_op *= right_op;
				}
				right_op = 0;
				op = 1; //たしざん
			}else if(eq.charAt(i) == 43){
				if(flag == 0){
					result = 1;
					flag = 1;
				}
				if(op == 1){
					left_op += right_op;
				}else if(op == 2){
					left_op *= right_op;
				}
				right_op = 0;
				op = 2; //かけざん
			}else if(op == 0){
				left_op *= 10;
				left_op += eq.charAt(i) - 48;
			}else{
				right_op *= 10;
				right_op += eq.charAt(i) - 48;
			}
		}
		
		System.out.println(left_op);
	}
}
0