結果

問題 No.49 算数の宿題
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-29 19:44:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 488 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-06-02 07:23:08
合計ジャッジ時間 3,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,060 KB
testcase_01 AC 114 ms
53,784 KB
testcase_02 AC 113 ms
53,580 KB
testcase_03 AC 115 ms
54,236 KB
testcase_04 AC 99 ms
53,024 KB
testcase_05 AC 108 ms
54,096 KB
testcase_06 AC 112 ms
54,196 KB
testcase_07 AC 102 ms
52,952 KB
testcase_08 AC 108 ms
53,504 KB
testcase_09 AC 122 ms
53,920 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