結果

問題 No.49 算数の宿題
ユーザー villachvillach
提出日時 2017-10-12 09:31:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 1,053 bytes
コンパイル時間 3,234 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-06-02 07:21:19
合計ジャッジ時間 4,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,192 KB
testcase_01 AC 111 ms
54,012 KB
testcase_02 AC 108 ms
52,892 KB
testcase_03 AC 115 ms
54,284 KB
testcase_04 AC 102 ms
53,012 KB
testcase_05 AC 97 ms
52,952 KB
testcase_06 AC 108 ms
53,648 KB
testcase_07 AC 99 ms
52,936 KB
testcase_08 AC 99 ms
52,884 KB
testcase_09 AC 114 ms
54,028 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