結果
問題 | No.49 算数の宿題 |
ユーザー | jp_ste |
提出日時 | 2016-05-10 17:22:46 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 112 ms / 5,000 ms |
コード長 | 851 bytes |
コンパイル時間 | 2,819 ms |
コンパイル使用メモリ | 75,132 KB |
実行使用メモリ | 41,572 KB |
最終ジャッジ日時 | 2024-06-02 07:15:16 |
合計ジャッジ時間 | 4,524 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 96 ms
39,840 KB |
testcase_01 | AC | 96 ms
39,996 KB |
testcase_02 | AC | 111 ms
41,176 KB |
testcase_03 | AC | 112 ms
41,144 KB |
testcase_04 | AC | 105 ms
41,572 KB |
testcase_05 | AC | 108 ms
41,364 KB |
testcase_06 | AC | 110 ms
41,268 KB |
testcase_07 | AC | 107 ms
40,720 KB |
testcase_08 | AC | 99 ms
41,032 KB |
testcase_09 | AC | 108 ms
41,124 KB |
ソースコード
import java.util.Scanner; public class Main2 { public static void main(String[] args) { try (Scanner scan = new Scanner(System.in)) { String S = scan.next(); String strList[] = S.split("\\*|\\+"); int list[] = new int[strList.length]; for(int i=0; i<list.length; i++) { list[i] = Integer.parseInt(strList[i]); } int count = 1; for(int i=0; i<S.length(); i++) { char ch = S.charAt(i); if(ch == '*') { list[0] = list[0] + list[count]; count++; } else if(ch == '+') { list[0] = list[0] * list[count]; count++; } } System.out.println(list[0]); } } }