結果

問題 No.441 和か積
ユーザー yun_appyun_app
提出日時 2016-12-01 17:16:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 750 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 50,424 KB
最終ジャッジ日時 2024-06-27 03:39:43
合計ジャッジ時間 5,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
50,024 KB
testcase_01 AC 59 ms
50,100 KB
testcase_02 AC 58 ms
50,196 KB
testcase_03 AC 58 ms
49,768 KB
testcase_04 AC 58 ms
50,324 KB
testcase_05 AC 58 ms
49,940 KB
testcase_06 AC 58 ms
50,284 KB
testcase_07 AC 58 ms
50,180 KB
testcase_08 AC 59 ms
50,124 KB
testcase_09 AC 58 ms
50,252 KB
testcase_10 AC 56 ms
50,140 KB
testcase_11 AC 58 ms
50,200 KB
testcase_12 AC 58 ms
50,032 KB
testcase_13 AC 59 ms
50,280 KB
testcase_14 AC 58 ms
49,804 KB
testcase_15 AC 57 ms
50,348 KB
testcase_16 AC 58 ms
50,052 KB
testcase_17 AC 56 ms
49,796 KB
testcase_18 AC 55 ms
50,284 KB
testcase_19 AC 58 ms
50,236 KB
testcase_20 AC 58 ms
49,908 KB
testcase_21 AC 57 ms
49,912 KB
testcase_22 AC 58 ms
50,424 KB
testcase_23 AC 58 ms
49,940 KB
testcase_24 AC 61 ms
50,256 KB
testcase_25 AC 56 ms
50,044 KB
testcase_26 AC 58 ms
50,036 KB
testcase_27 AC 58 ms
50,236 KB
testcase_28 AC 58 ms
50,116 KB
testcase_29 AC 58 ms
50,316 KB
testcase_30 AC 58 ms
50,212 KB
testcase_31 AC 57 ms
50,012 KB
testcase_32 AC 58 ms
50,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;
import java.math.*;
class Main{
    public static void main (String[] args) throws java.lang.Exception{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] lines = br.readLine().toString().split(" ");
        BigInteger a = new BigInteger(lines[0]);
        BigInteger b = new BigInteger(lines[1]);
        BigInteger s = a.add(b);
        BigInteger p = a.multiply(b);
        
        switch(s.compareTo(p)){
        case -1:
            System.out.println("P");
            break;
        case 0:
            System.out.println("E");
            break;
        case 1:
            System.out.println("S");
            break;
        }
    }
}
0