結果
問題 | No.49 算数の宿題 |
ユーザー | kou6839 |
提出日時 | 2014-12-22 23:08:03 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 451 bytes |
コンパイル時間 | 1,912 ms |
コンパイル使用メモリ | 76,740 KB |
実行使用メモリ | 56,072 KB |
最終ジャッジ日時 | 2024-06-02 07:08:31 |
合計ジャッジ時間 | 3,629 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 109 ms
53,868 KB |
testcase_01 | AC | 99 ms
52,920 KB |
testcase_02 | RE | - |
testcase_03 | AC | 114 ms
54,276 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
import java.math.*; import java.util.*; class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.next(); int ans=Integer.parseInt(s.charAt(0)+""); for(int i=1;i<s.length();i+=2){ if(s.charAt(i)=='*') ans += Integer.parseInt(s.charAt(i+1)+""); else ans *= Integer.parseInt(s.charAt(i+1)+""); } System.out.println(ans); } }