結果

問題 No.49 算数の宿題
ユーザー 37zigen37zigen
提出日時 2016-05-04 20:45:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-06-02 07:15:06
合計ジャッジ時間 3,610 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		char[] c=sc.next().toCharArray();
		int n=c.length;
		int now=0;
		boolean tasu=true;
		int ans=0;
		for(int i=0;i<n;i++){
			if(c[i]-'0'>=0&&c[i]-'0'<=9){
				now*=10;
				now+=c[i]-'0';
			}
			else{
				if(tasu)ans+=now;
				else ans*=now;
				now=0;
				if(c[i]=='*')tasu=false;
				else if(c[i]=='+')tasu=true;
			}
		}
		if(tasu)ans+=now;
		else ans*=now;
		System.out.println(ans);
	}
}
0