結果

問題 No.49 算数の宿題
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-14 14:10:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 1,170 bytes
コンパイル時間 2,802 ms
コンパイル使用メモリ 79,512 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-06-02 07:26:13
合計ジャッジ時間 3,678 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,360 KB
testcase_01 AC 112 ms
41,156 KB
testcase_02 AC 114 ms
41,520 KB
testcase_03 AC 119 ms
41,672 KB
testcase_04 AC 100 ms
41,488 KB
testcase_05 AC 107 ms
40,076 KB
testcase_06 AC 113 ms
41,512 KB
testcase_07 AC 111 ms
41,728 KB
testcase_08 AC 109 ms
41,452 KB
testcase_09 AC 115 ms
41,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    int ans = 0;
    String st = "";
    int p = 0;
    String c = "";
    for(int i = 0; i < s.length(); i++) {
      String str = String.valueOf(s.charAt(i));
      if(str.equals("*")) {
        int d = Integer.parseInt(st);
        st = "";
        if(p == 0) {
          ans += d;
        } else {
          if(c.equals("*")) {
            ans += d;
          } else {
            ans *= d;
          }
        }
        p++;
        c = "*";
      } else if(str.equals("+")) {
        int d = Integer.parseInt(st);
        st = "";
        if(p == 0) {
          ans += d;
        } else {
          if(c.equals("*")) {
            ans += d;
          } else {
            ans *= d;
          }          
        }
        p++;
        c = "+";
      } else {
        st += str;
        int d = Integer.parseInt(st);
        if(i == s.length() - 1) {
          if(c.equals("*")) {
            ans += d;
          } else {
            ans *= d;
          }
        }
      }
    }
    System.out.println(ans);
  }
}
0