結果

問題 No.441 和か積
ユーザー Cyberdog-しばいぬ-Cyberdog-しばいぬ-
提出日時 2019-10-11 23:55:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 536 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-11-25 11:55:24
合計ジャッジ時間 7,510 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,916 KB
testcase_01 AC 134 ms
54,120 KB
testcase_02 AC 132 ms
54,252 KB
testcase_03 AC 132 ms
54,292 KB
testcase_04 AC 133 ms
53,968 KB
testcase_05 AC 130 ms
53,800 KB
testcase_06 AC 124 ms
53,952 KB
testcase_07 AC 126 ms
53,948 KB
testcase_08 AC 136 ms
53,864 KB
testcase_09 AC 130 ms
54,192 KB
testcase_10 AC 131 ms
53,764 KB
testcase_11 AC 136 ms
53,808 KB
testcase_12 AC 131 ms
54,208 KB
testcase_13 AC 131 ms
54,200 KB
testcase_14 AC 130 ms
53,912 KB
testcase_15 AC 134 ms
53,948 KB
testcase_16 AC 131 ms
54,096 KB
testcase_17 AC 135 ms
53,824 KB
testcase_18 AC 128 ms
54,208 KB
testcase_19 AC 130 ms
54,540 KB
testcase_20 AC 135 ms
53,780 KB
testcase_21 AC 143 ms
54,240 KB
testcase_22 AC 140 ms
54,348 KB
testcase_23 AC 135 ms
54,144 KB
testcase_24 AC 133 ms
54,000 KB
testcase_25 AC 136 ms
54,216 KB
testcase_26 AC 132 ms
54,112 KB
testcase_27 AC 130 ms
53,840 KB
testcase_28 AC 131 ms
54,084 KB
testcase_29 AC 133 ms
54,100 KB
testcase_30 AC 133 ms
53,964 KB
testcase_31 AC 125 ms
53,040 KB
testcase_32 AC 132 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        BigInteger a = scan.nextBigInteger();
        BigInteger b = scan.nextBigInteger();
        if (a.add(b).compareTo(a.multiply(b)) > 0) {
            System.out.println("S");
        } else if (a.add(b).compareTo(a.multiply(b)) < 0) {
            System.out.println("P");
        } else {
            System.out.println("E");
        }
    }
}
0