結果

問題 No.441 和か積
ユーザー tsunabittsunabit
提出日時 2019-06-09 16:38:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 405 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 55,908 KB
最終ジャッジ日時 2024-10-06 00:09:15
合計ジャッジ時間 7,963 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
55,908 KB
testcase_01 AC 119 ms
54,196 KB
testcase_02 AC 118 ms
54,020 KB
testcase_03 AC 127 ms
54,064 KB
testcase_04 AC 118 ms
54,208 KB
testcase_05 AC 121 ms
54,116 KB
testcase_06 AC 124 ms
54,060 KB
testcase_07 AC 118 ms
54,028 KB
testcase_08 AC 107 ms
52,920 KB
testcase_09 AC 109 ms
53,148 KB
testcase_10 AC 110 ms
52,932 KB
testcase_11 AC 124 ms
54,120 KB
testcase_12 AC 116 ms
53,316 KB
testcase_13 AC 119 ms
54,044 KB
testcase_14 AC 123 ms
54,188 KB
testcase_15 AC 117 ms
53,760 KB
testcase_16 AC 121 ms
54,260 KB
testcase_17 AC 120 ms
54,232 KB
testcase_18 AC 126 ms
54,008 KB
testcase_19 AC 123 ms
53,972 KB
testcase_20 AC 119 ms
53,016 KB
testcase_21 AC 122 ms
54,204 KB
testcase_22 AC 109 ms
52,848 KB
testcase_23 AC 120 ms
54,292 KB
testcase_24 AC 118 ms
53,980 KB
testcase_25 AC 109 ms
52,832 KB
testcase_26 AC 122 ms
53,824 KB
testcase_27 AC 118 ms
53,952 KB
testcase_28 AC 121 ms
54,004 KB
testcase_29 AC 118 ms
54,308 KB
testcase_30 AC 119 ms
54,256 KB
testcase_31 AC 117 ms
53,820 KB
testcase_32 AC 109 ms
52,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No441 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        BigInteger a = sc.nextBigInteger(), b = sc.nextBigInteger();
		int c = a.add(b).compareTo(a.multiply(b));
		System.out.println(c>0?"S":c<0?"P":"E");
    }
}
0