結果
問題 | No.49 算数の宿題 |
ユーザー | chiho_miyako |
提出日時 | 2015-04-18 23:11:43 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 124 ms / 5,000 ms |
コード長 | 936 bytes |
コンパイル時間 | 2,112 ms |
コンパイル使用メモリ | 78,020 KB |
実行使用メモリ | 54,192 KB |
最終ジャッジ日時 | 2024-06-02 07:09:37 |
合計ジャッジ時間 | 4,301 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
53,948 KB |
testcase_01 | AC | 112 ms
54,192 KB |
testcase_02 | AC | 112 ms
54,056 KB |
testcase_03 | AC | 124 ms
53,832 KB |
testcase_04 | AC | 111 ms
53,704 KB |
testcase_05 | AC | 97 ms
52,836 KB |
testcase_06 | AC | 104 ms
52,664 KB |
testcase_07 | AC | 116 ms
54,056 KB |
testcase_08 | AC | 99 ms
52,652 KB |
testcase_09 | AC | 110 ms
54,104 KB |
ソースコード
import java.util.*; import java.util.regex.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); String s = koko.next(); int n=0; String pn = "['*''+']+"; Pattern pnum = Pattern.compile(pn); String[] num = pnum.split(s); int[] number = new int[num.length]; String[] siki = new String[num.length-1]; Matcher m = pnum.matcher(s); int si = 0; while(m.find()){ siki[si++]=m.group(0); } for(int i=0; i<num.length; i++){ number[i]=Integer.parseInt(num[i]); } int total=number[0]; for(int i=0; i<siki.length; i++){ if(siki[i].equals("+")){ total=total*number[i+1]; }else{ total=total+number[i+1]; } } System.out.println(total); } }