結果

問題 No.441 和か積
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-02 18:41:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 461 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-06-27 03:39:35
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Question441
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		BigInteger A = scan.nextBigInteger();
		BigInteger B = scan.nextBigInteger();
		
		BigInteger P = A.multiply(B);
		BigInteger S = A.add(B);
		
		if(P.compareTo(S)>0){
			System.out.println("P");
		}
		else if(P.compareTo(S)<0){
			System.out.println("S");
		}
		else{
			System.out.println("E");
		}
	}
}
0