結果

問題 No.441 和か積
ユーザー RS-7RS-7
提出日時 2016-11-17 19:32:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 483 bytes
コンパイル時間 3,225 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-06-27 03:36:54
合計ジャッジ時間 8,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,804 KB
testcase_01 AC 128 ms
41,492 KB
testcase_02 AC 128 ms
41,528 KB
testcase_03 AC 131 ms
41,040 KB
testcase_04 AC 126 ms
41,048 KB
testcase_05 AC 128 ms
41,740 KB
testcase_06 AC 128 ms
41,412 KB
testcase_07 AC 113 ms
40,324 KB
testcase_08 AC 128 ms
41,364 KB
testcase_09 AC 120 ms
41,812 KB
testcase_10 AC 129 ms
41,736 KB
testcase_11 AC 125 ms
41,452 KB
testcase_12 AC 129 ms
41,312 KB
testcase_13 AC 122 ms
40,912 KB
testcase_14 AC 125 ms
41,636 KB
testcase_15 AC 128 ms
41,228 KB
testcase_16 AC 125 ms
41,612 KB
testcase_17 AC 110 ms
40,248 KB
testcase_18 AC 124 ms
41,004 KB
testcase_19 AC 125 ms
41,100 KB
testcase_20 AC 131 ms
41,432 KB
testcase_21 AC 132 ms
41,272 KB
testcase_22 AC 118 ms
40,172 KB
testcase_23 AC 127 ms
41,508 KB
testcase_24 AC 116 ms
40,460 KB
testcase_25 AC 130 ms
41,348 KB
testcase_26 AC 125 ms
41,072 KB
testcase_27 AC 128 ms
41,340 KB
testcase_28 AC 117 ms
40,816 KB
testcase_29 AC 129 ms
41,340 KB
testcase_30 AC 127 ms
41,464 KB
testcase_31 AC 130 ms
41,144 KB
testcase_32 AC 131 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class No_441 {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		BigInteger a = scanner.nextBigInteger();
		BigInteger b = scanner.nextBigInteger();
		BigInteger c = a.add(b);
		BigInteger d = a.multiply(b);

		if(c.compareTo(d)>0){
			System.out.println("S");
		}else if(c.compareTo(d)<0){
			System.out.println("P");
		}else if(c.equals(d)){
			System.out.println("E");
		}
	}

}
0