結果

問題 No.49 算数の宿題
ユーザー kaoetayakaoetaya
提出日時 2016-11-11 12:33:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 672 bytes
コンパイル時間 3,474 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-06-02 07:17:00
合計ジャッジ時間 4,544 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
54,072 KB
testcase_01 AC 95 ms
52,704 KB
testcase_02 WA -
testcase_03 AC 99 ms
52,804 KB
testcase_04 AC 108 ms
53,652 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 108 ms
53,908 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
		String math = s.next();
		int ans = Integer.parseInt(String.valueOf(math.charAt(0)));
		
		for(int i=1;i<math.length();i++){
			if(String.valueOf(math.charAt(i)).equals("*") || String.valueOf(math.charAt(i)).equals("+")){
				i++;
			}
			
			if(String.valueOf(math.charAt(i-1)).equals("*")){
				ans = ans + Integer.parseInt(String.valueOf(math.charAt(i)));
			}
			else if(String.valueOf(math.charAt(i-1)).equals("+")){
				ans = ans * Integer.parseInt(String.valueOf(math.charAt(i)));
			}
		}
		
		System.out.println(ans);
    }
}
0