結果

問題 No.441 和か積
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-04 08:33:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 728 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 37,156 KB
最終ジャッジ日時 2024-06-27 03:52:37
合計ジャッジ時間 4,547 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,132 KB
testcase_01 AC 51 ms
36,564 KB
testcase_02 AC 50 ms
36,800 KB
testcase_03 AC 51 ms
36,956 KB
testcase_04 AC 51 ms
36,796 KB
testcase_05 AC 50 ms
36,928 KB
testcase_06 AC 50 ms
36,580 KB
testcase_07 AC 50 ms
37,056 KB
testcase_08 AC 50 ms
37,132 KB
testcase_09 AC 50 ms
36,860 KB
testcase_10 AC 50 ms
37,104 KB
testcase_11 AC 49 ms
36,872 KB
testcase_12 AC 49 ms
37,156 KB
testcase_13 AC 49 ms
36,760 KB
testcase_14 AC 50 ms
37,060 KB
testcase_15 AC 52 ms
37,076 KB
testcase_16 AC 51 ms
36,940 KB
testcase_17 AC 51 ms
36,756 KB
testcase_18 AC 52 ms
36,760 KB
testcase_19 AC 50 ms
37,008 KB
testcase_20 AC 50 ms
36,972 KB
testcase_21 AC 51 ms
36,800 KB
testcase_22 AC 50 ms
36,968 KB
testcase_23 AC 50 ms
37,020 KB
testcase_24 AC 51 ms
36,776 KB
testcase_25 AC 50 ms
36,748 KB
testcase_26 AC 51 ms
36,576 KB
testcase_27 AC 50 ms
37,008 KB
testcase_28 AC 52 ms
37,124 KB
testcase_29 AC 52 ms
36,776 KB
testcase_30 AC 51 ms
36,788 KB
testcase_31 AC 54 ms
36,412 KB
testcase_32 AC 51 ms
36,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigInteger;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        BigInteger A = new BigInteger(inputs[0]);
        BigInteger B = new BigInteger(inputs[1]);
        int r = (A.add(B)).compareTo(A.multiply(B));
        if(r == -1) {
            System.out.println("P");
        } else if (r == 0) {
            System.out.println("E");
        } else {
            System.out.println("S");
        }
    }
}
0