結果

問題 No.441 和か積
ユーザー kenji_shioyakenji_shioya
提出日時 2017-01-08 02:40:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 502 bytes
コンパイル時間 3,896 ms
コンパイル使用メモリ 75,972 KB
実行使用メモリ 54,636 KB
最終ジャッジ日時 2024-06-27 03:43:04
合計ジャッジ時間 9,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,040 KB
testcase_01 AC 142 ms
53,984 KB
testcase_02 AC 146 ms
54,444 KB
testcase_03 AC 142 ms
54,496 KB
testcase_04 AC 144 ms
54,124 KB
testcase_05 AC 141 ms
53,888 KB
testcase_06 AC 147 ms
53,872 KB
testcase_07 AC 142 ms
54,120 KB
testcase_08 AC 143 ms
54,072 KB
testcase_09 AC 143 ms
53,916 KB
testcase_10 AC 139 ms
54,500 KB
testcase_11 AC 140 ms
54,420 KB
testcase_12 AC 141 ms
54,288 KB
testcase_13 AC 140 ms
54,120 KB
testcase_14 AC 139 ms
54,020 KB
testcase_15 AC 141 ms
54,536 KB
testcase_16 AC 139 ms
54,072 KB
testcase_17 AC 139 ms
53,884 KB
testcase_18 AC 149 ms
53,864 KB
testcase_19 AC 141 ms
54,344 KB
testcase_20 AC 149 ms
54,260 KB
testcase_21 AC 144 ms
54,132 KB
testcase_22 AC 145 ms
54,296 KB
testcase_23 AC 145 ms
54,348 KB
testcase_24 AC 148 ms
54,512 KB
testcase_25 AC 145 ms
54,004 KB
testcase_26 AC 144 ms
54,636 KB
testcase_27 AC 141 ms
53,976 KB
testcase_28 AC 142 ms
54,324 KB
testcase_29 AC 141 ms
54,008 KB
testcase_30 AC 140 ms
54,484 KB
testcase_31 AC 141 ms
54,004 KB
testcase_32 AC 151 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.BigDecimal;

public class SumMultiply2 {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);

    BigDecimal a = new BigDecimal(sc.next());
    BigDecimal b = new BigDecimal(sc.next());

    BigDecimal c = a.add(b);
    BigDecimal d = a.multiply(b);

    if (c.compareTo(d) == -1){
      System.out.println("P");
    }else if (c.compareTo(d) == 0){
      System.out.println("E");
    }else{
      System.out.println("S");
    }
  }
}
0