結果

問題 No.441 和か積
ユーザー yokoshabelyokoshabel
提出日時 2017-01-01 00:27:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 439 bytes
コンパイル時間 3,852 ms
コンパイル使用メモリ 75,712 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-06-27 03:42:32
合計ジャッジ時間 9,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,188 KB
testcase_01 AC 151 ms
54,412 KB
testcase_02 AC 145 ms
53,704 KB
testcase_03 AC 151 ms
54,016 KB
testcase_04 AC 145 ms
53,956 KB
testcase_05 AC 144 ms
53,792 KB
testcase_06 AC 143 ms
53,884 KB
testcase_07 AC 141 ms
53,952 KB
testcase_08 AC 140 ms
54,388 KB
testcase_09 AC 146 ms
54,036 KB
testcase_10 AC 137 ms
53,592 KB
testcase_11 AC 145 ms
54,128 KB
testcase_12 AC 140 ms
54,216 KB
testcase_13 AC 141 ms
54,120 KB
testcase_14 AC 142 ms
53,912 KB
testcase_15 AC 139 ms
54,016 KB
testcase_16 AC 142 ms
54,124 KB
testcase_17 AC 139 ms
54,196 KB
testcase_18 AC 146 ms
53,804 KB
testcase_19 AC 143 ms
54,216 KB
testcase_20 AC 147 ms
54,208 KB
testcase_21 AC 144 ms
53,980 KB
testcase_22 AC 147 ms
54,040 KB
testcase_23 AC 142 ms
54,296 KB
testcase_24 AC 145 ms
54,236 KB
testcase_25 AC 148 ms
54,376 KB
testcase_26 AC 146 ms
54,020 KB
testcase_27 AC 145 ms
54,064 KB
testcase_28 AC 147 ms
54,188 KB
testcase_29 AC 152 ms
54,384 KB
testcase_30 AC 148 ms
53,756 KB
testcase_31 AC 149 ms
53,952 KB
testcase_32 AC 150 ms
54,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.math.*;
import static java.lang.System.out;

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