結果
問題 | No.49 算数の宿題 |
ユーザー | mosmos_21 |
提出日時 | 2017-06-18 21:19:58 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 1,884 ms |
コンパイル使用メモリ | 74,408 KB |
実行使用メモリ | 54,796 KB |
最終ジャッジ日時 | 2024-06-02 07:20:45 |
合計ジャッジ時間 | 3,529 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
41,380 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import java.util.Scanner; public class Main { static Scanner in = new Scanner(System.in); public static void main(String[] args) { String[] s = in.nextLine().replaceAll("(\\+|\\*)", "_$1_").split("_"); int sum = Integer.parseInt(s[0]); for(int i = 1; i < s.length; i += 2){ if(s[i].equals("+")){ sum += Integer.parseInt(s[i + 1]); }else if(s[i].equals("*")){ sum += Integer.parseInt(s[i + 1]); } } System.out.println(sum); } }