結果

問題 No.49 算数の宿題
ユーザー spaciaspacia
提出日時 2016-01-04 14:02:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 654 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 75,424 KB
実行使用メモリ 50,548 KB
最終ジャッジ日時 2024-06-02 07:12:15
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,380 KB
testcase_01 AC 55 ms
50,548 KB
testcase_02 AC 55 ms
50,056 KB
testcase_03 AC 57 ms
50,060 KB
testcase_04 AC 57 ms
50,152 KB
testcase_05 AC 57 ms
50,436 KB
testcase_06 AC 57 ms
50,072 KB
testcase_07 AC 55 ms
50,080 KB
testcase_08 AC 56 ms
50,304 KB
testcase_09 AC 57 ms
50,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		char[] c = br.readLine().toCharArray();
		boolean isAdd = true;
		int ans = 0, i = 0;
		
		while (i < c.length) {
			int work = 0;
			int j = i;
			while (j < c.length && (c[j] + "").matches("[0-9]")) {
				work = work * 10 + (c[j++] - '0');
			}
			ans = isAdd ? ans + work : ans * work;
			if (j < c.length) isAdd = c[j++] == '*';
			i = j;
		}
		
		out(ans);
	}
}
0