結果

問題 No.441 和か積
ユーザー darknightdarknight
提出日時 2016-11-11 23:00:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 838 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 76,804 KB
実行使用メモリ 54,536 KB
最終ジャッジ日時 2024-06-27 03:29:00
合計ジャッジ時間 7,636 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,008 KB
testcase_01 AC 129 ms
54,056 KB
testcase_02 AC 132 ms
53,844 KB
testcase_03 AC 131 ms
54,236 KB
testcase_04 AC 133 ms
54,036 KB
testcase_05 AC 136 ms
53,832 KB
testcase_06 AC 139 ms
54,188 KB
testcase_07 AC 132 ms
53,972 KB
testcase_08 AC 131 ms
54,224 KB
testcase_09 AC 131 ms
54,096 KB
testcase_10 AC 129 ms
53,716 KB
testcase_11 AC 131 ms
54,112 KB
testcase_12 AC 136 ms
54,148 KB
testcase_13 AC 136 ms
54,116 KB
testcase_14 AC 130 ms
54,236 KB
testcase_15 AC 131 ms
54,152 KB
testcase_16 AC 131 ms
53,832 KB
testcase_17 AC 135 ms
53,944 KB
testcase_18 AC 131 ms
53,836 KB
testcase_19 AC 133 ms
54,232 KB
testcase_20 AC 122 ms
53,016 KB
testcase_21 AC 134 ms
54,244 KB
testcase_22 AC 134 ms
54,332 KB
testcase_23 AC 136 ms
54,024 KB
testcase_24 AC 142 ms
53,836 KB
testcase_25 AC 133 ms
53,876 KB
testcase_26 AC 137 ms
54,116 KB
testcase_27 AC 132 ms
53,996 KB
testcase_28 AC 136 ms
54,028 KB
testcase_29 AC 132 ms
54,020 KB
testcase_30 AC 132 ms
54,032 KB
testcase_31 AC 134 ms
54,536 KB
testcase_32 AC 134 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.BigInteger;
 
public class Main {
	public static void main(String[] args) {
 
	Scanner sc  = new Scanner(System.in);
	String str = "";
        
    String str3  = sc.next();
    String str2 = sc.next();
    BigInteger big1 = new  BigInteger( str3 );
    BigInteger big2 = new BigInteger( str2 );
    
    BigInteger big3 = new  BigInteger( str3 );
    BigInteger big4 = new BigInteger( str2 );
    
    BigInteger big5 = big1.add(big2);
    BigInteger big6 = big3.multiply(big4);
    
    if( big5.compareTo(big6) == 0  )
    {
        str += "E";
    }
    else if( big5.compareTo(big6) > 0 )
    { 
        str += "S";
    }
    else if( big5.compareTo(big6) < 0  )
    {
        str += "P";
    }
    
    
   

        System.out.print( str );
        
        System.out.println( );
	}
        
}
0