結果

問題 No.441 和か積
ユーザー TakaTaka
提出日時 2016-11-16 16:29:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 427 bytes
コンパイル時間 1,956 ms
コンパイル使用メモリ 73,624 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-06-27 03:36:09
合計ジャッジ時間 7,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,168 KB
testcase_01 AC 127 ms
41,432 KB
testcase_02 AC 116 ms
40,244 KB
testcase_03 AC 130 ms
41,288 KB
testcase_04 AC 136 ms
41,584 KB
testcase_05 AC 131 ms
41,332 KB
testcase_06 AC 129 ms
41,464 KB
testcase_07 AC 129 ms
41,540 KB
testcase_08 AC 114 ms
39,960 KB
testcase_09 AC 124 ms
41,084 KB
testcase_10 AC 127 ms
40,932 KB
testcase_11 AC 129 ms
41,184 KB
testcase_12 AC 125 ms
41,060 KB
testcase_13 AC 122 ms
41,316 KB
testcase_14 AC 128 ms
41,060 KB
testcase_15 AC 126 ms
41,060 KB
testcase_16 AC 112 ms
39,952 KB
testcase_17 AC 126 ms
41,184 KB
testcase_18 AC 124 ms
41,188 KB
testcase_19 AC 112 ms
39,900 KB
testcase_20 AC 130 ms
41,472 KB
testcase_21 AC 134 ms
41,792 KB
testcase_22 AC 131 ms
41,396 KB
testcase_23 AC 126 ms
41,380 KB
testcase_24 AC 123 ms
40,688 KB
testcase_25 AC 127 ms
41,032 KB
testcase_26 AC 127 ms
41,212 KB
testcase_27 AC 125 ms
41,372 KB
testcase_28 AC 129 ms
41,712 KB
testcase_29 AC 127 ms
41,268 KB
testcase_30 AC 126 ms
41,304 KB
testcase_31 AC 129 ms
41,348 KB
testcase_32 AC 133 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.math.BigInteger;
class map{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		BigInteger a=sc.nextBigInteger();;
		BigInteger b=sc.nextBigInteger();
		BigInteger c=a.add(b);
		BigInteger d=a.multiply(b);
		if(c.compareTo(d)>0){
			System.out.println('S');
		}else if(d.compareTo(c)>0){
			System.out.println('P');
		}else{
			System.out.println('E');
		}
	}
}
0