結果

問題 No.441 和か積
ユーザー nullzinenullzine
提出日時 2017-01-18 20:54:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 1,000 ms
コード長 521 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 55,828 KB
最終ジャッジ日時 2024-06-27 03:44:06
合計ジャッジ時間 8,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,104 KB
testcase_01 AC 133 ms
53,824 KB
testcase_02 AC 135 ms
54,132 KB
testcase_03 AC 136 ms
54,252 KB
testcase_04 AC 139 ms
53,868 KB
testcase_05 AC 136 ms
53,696 KB
testcase_06 AC 143 ms
53,856 KB
testcase_07 AC 139 ms
54,376 KB
testcase_08 AC 135 ms
54,008 KB
testcase_09 AC 139 ms
53,800 KB
testcase_10 AC 136 ms
53,884 KB
testcase_11 AC 135 ms
53,744 KB
testcase_12 AC 139 ms
54,088 KB
testcase_13 AC 140 ms
55,828 KB
testcase_14 AC 136 ms
53,724 KB
testcase_15 AC 137 ms
54,012 KB
testcase_16 AC 137 ms
53,984 KB
testcase_17 AC 143 ms
53,864 KB
testcase_18 AC 142 ms
54,252 KB
testcase_19 AC 143 ms
54,388 KB
testcase_20 AC 149 ms
54,128 KB
testcase_21 AC 141 ms
54,432 KB
testcase_22 AC 140 ms
54,100 KB
testcase_23 AC 139 ms
54,184 KB
testcase_24 AC 144 ms
54,000 KB
testcase_25 AC 139 ms
54,268 KB
testcase_26 AC 139 ms
53,888 KB
testcase_27 AC 136 ms
53,940 KB
testcase_28 AC 136 ms
53,996 KB
testcase_29 AC 142 ms
53,860 KB
testcase_30 AC 139 ms
54,044 KB
testcase_31 AC 145 ms
54,060 KB
testcase_32 AC 142 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;

/**
 * Created by nullzine on 2017/01/18.
 */
public class Main {

    public static void main(String[] args){
        String[] strs = new java.util.Scanner(System.in).nextLine().split(" ");
        System.out.println(new BigInteger(strs[0]).multiply(new BigInteger(strs[1])).compareTo(new BigInteger(strs[0]).add(new BigInteger(strs[1])))==0?"E":(new BigInteger(strs[0]).multiply(new BigInteger(strs[1])).compareTo(new BigInteger(strs[0]).add(new BigInteger(strs[1])))<0?"S":"P"));
    }

}
0