結果

問題 No.441 和か積
ユーザー OGNMOGNM
提出日時 2016-11-11 23:08:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 490 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 80,760 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-06-27 03:30:09
合計ジャッジ時間 7,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,368 KB
testcase_01 AC 122 ms
54,088 KB
testcase_02 AC 124 ms
54,240 KB
testcase_03 AC 114 ms
53,024 KB
testcase_04 AC 127 ms
54,308 KB
testcase_05 AC 130 ms
54,172 KB
testcase_06 AC 125 ms
54,000 KB
testcase_07 AC 124 ms
54,192 KB
testcase_08 AC 126 ms
54,068 KB
testcase_09 AC 123 ms
54,184 KB
testcase_10 AC 127 ms
54,160 KB
testcase_11 AC 124 ms
53,792 KB
testcase_12 AC 124 ms
54,128 KB
testcase_13 AC 126 ms
54,392 KB
testcase_14 AC 127 ms
54,080 KB
testcase_15 AC 125 ms
54,140 KB
testcase_16 AC 136 ms
54,476 KB
testcase_17 AC 125 ms
54,148 KB
testcase_18 AC 124 ms
54,160 KB
testcase_19 AC 122 ms
54,280 KB
testcase_20 AC 126 ms
53,992 KB
testcase_21 AC 127 ms
53,916 KB
testcase_22 AC 127 ms
54,180 KB
testcase_23 AC 130 ms
54,188 KB
testcase_24 AC 126 ms
54,092 KB
testcase_25 AC 128 ms
54,136 KB
testcase_26 AC 123 ms
54,508 KB
testcase_27 AC 124 ms
54,028 KB
testcase_28 AC 126 ms
54,256 KB
testcase_29 AC 126 ms
54,088 KB
testcase_30 AC 123 ms
53,960 KB
testcase_31 AC 127 ms
53,848 KB
testcase_32 AC 129 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
	String n1 = sc.next();
	String n2 = sc.next();
	BigInteger bi1 = new BigInteger(n1);
	BigInteger bi2 = new BigInteger(n2);
	BigInteger s = bi1.add(bi2);
	BigInteger p = bi1.multiply(bi2);
	if(s.compareTo(p)>0){
		System.out.println("S");
	}else if(s.compareTo(p)<0){
		System.out.println("P");
	}else if(s.equals(p) ){
		System.out.println("E");
	}
}
}
0