結果

問題 No.49 算数の宿題
ユーザー リチウムリチウム
提出日時 2014-10-23 23:06:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 543 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-06-02 07:07:05
合計ジャッジ時間 3,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,584 KB
testcase_01 AC 113 ms
41,004 KB
testcase_02 AC 114 ms
41,088 KB
testcase_03 AC 121 ms
41,384 KB
testcase_04 AC 121 ms
41,008 KB
testcase_05 AC 96 ms
41,800 KB
testcase_06 AC 112 ms
41,284 KB
testcase_07 AC 100 ms
41,752 KB
testcase_08 AC 110 ms
41,148 KB
testcase_09 AC 102 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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