結果

問題 No.49 算数の宿題
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-29 19:44:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 488 bytes
コンパイル時間 2,533 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,160 KB
最終ジャッジ日時 2024-12-23 02:00:35
合計ジャッジ時間 3,673 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,940 KB
testcase_01 AC 111 ms
40,960 KB
testcase_02 AC 97 ms
39,324 KB
testcase_03 AC 116 ms
41,160 KB
testcase_04 AC 110 ms
40,704 KB
testcase_05 AC 115 ms
40,884 KB
testcase_06 AC 114 ms
40,980 KB
testcase_07 AC 98 ms
40,140 KB
testcase_08 AC 117 ms
41,004 KB
testcase_09 AC 99 ms
39,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		String s=scanner.next();
		String x[]=s.split("[\\+\\*]");
		int tmp=Integer.parseInt(x[0]);
		int j=1;
		for(int i=0;i<s.length();i++) {
			if(s.charAt(i)=='+') {
				tmp*=Integer.parseInt(x[j]);
				j++;
			}else if(s.charAt(i)=='*') {
				tmp+=Integer.parseInt(x[j]);
				j++;
			}
		}
		System.out.println(tmp);
	}
}
0