結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,052 KB
testcase_01 AC 121 ms
53,740 KB
testcase_02 AC 122 ms
53,900 KB
testcase_03 AC 124 ms
54,012 KB
testcase_04 AC 118 ms
53,964 KB
testcase_05 AC 123 ms
54,372 KB
testcase_06 AC 126 ms
54,196 KB
testcase_07 AC 128 ms
53,948 KB
testcase_08 AC 125 ms
54,072 KB
testcase_09 AC 126 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

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