結果

問題 No.49 算数の宿題
ユーザー kaoetayakaoetaya
提出日時 2016-11-11 12:33:46
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 672 bytes
コンパイル時間 3,781 ms
コンパイル使用メモリ 75,364 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-12-23 01:53:51
合計ジャッジ時間 5,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,572 KB
testcase_01 AC 128 ms
41,092 KB
testcase_02 WA -
testcase_03 AC 135 ms
40,932 KB
testcase_04 AC 135 ms
41,144 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 118 ms
40,056 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