結果

問題 No.49 算数の宿題
ユーザー ぴろずぴろず
提出日時 2014-12-15 15:09:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 672 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-06-02 07:08:37
合計ジャッジ時間 3,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,836 KB
testcase_01 AC 97 ms
53,084 KB
testcase_02 AC 110 ms
53,964 KB
testcase_03 AC 113 ms
54,084 KB
testcase_04 AC 117 ms
53,980 KB
testcase_05 AC 101 ms
52,932 KB
testcase_06 AC 112 ms
54,000 KB
testcase_07 AC 109 ms
53,896 KB
testcase_08 AC 111 ms
53,580 KB
testcase_09 AC 108 ms
53,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no049;

import java.util.Scanner;

public class Main {

	static char[] s;
	static int i;
	static int n;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		s = sc.next().toCharArray();
		n = s.length;
		i = 0;
		System.out.println(exp());
	}

	public static int exp() {
		int num = number();
		while(i < n) {
			if (s[i] == '*') {
				i++;
				num += number();
			}else{
				i++;
				num *= number();
			}
		}
		return num;
	}

	public static int number() {
		int num = 0;
		while (i < n && '0' <= s[i] && s[i] <= '9') {
			num *= 10;
			num += s[i] - '0';
			i++;
		}
		return num;
	}

}
0