結果

問題 No.441 和か積
ユーザー fal_rndfal_rnd
提出日時 2016-11-11 22:26:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 391 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-06-27 03:17:47
合計ジャッジ時間 7,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,160 KB
testcase_01 AC 130 ms
41,484 KB
testcase_02 AC 117 ms
40,648 KB
testcase_03 AC 132 ms
41,332 KB
testcase_04 AC 129 ms
40,996 KB
testcase_05 AC 132 ms
41,164 KB
testcase_06 AC 129 ms
41,120 KB
testcase_07 AC 129 ms
41,588 KB
testcase_08 AC 127 ms
41,432 KB
testcase_09 AC 121 ms
41,272 KB
testcase_10 AC 125 ms
41,252 KB
testcase_11 AC 116 ms
40,796 KB
testcase_12 AC 123 ms
41,108 KB
testcase_13 AC 126 ms
41,192 KB
testcase_14 AC 122 ms
41,304 KB
testcase_15 AC 116 ms
41,264 KB
testcase_16 AC 123 ms
41,048 KB
testcase_17 AC 112 ms
39,784 KB
testcase_18 AC 123 ms
41,184 KB
testcase_19 AC 120 ms
40,924 KB
testcase_20 AC 127 ms
41,184 KB
testcase_21 AC 133 ms
41,408 KB
testcase_22 AC 132 ms
41,344 KB
testcase_23 AC 116 ms
40,300 KB
testcase_24 AC 112 ms
39,972 KB
testcase_25 AC 113 ms
40,192 KB
testcase_26 AC 127 ms
41,324 KB
testcase_27 AC 127 ms
41,688 KB
testcase_28 AC 129 ms
41,348 KB
testcase_29 AC 117 ms
40,436 KB
testcase_30 AC 128 ms
41,580 KB
testcase_31 AC 123 ms
41,152 KB
testcase_32 AC 125 ms
41,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		BigInteger a=s.nextBigInteger(), b=s.nextBigInteger(),
		s = a.add(b),
		p = a.multiply(b);
		int i = s.compareTo(p);
		if(i==0)
			System.out.println("E");
		else if(i>0)
			System.out.println("S");
		else
			System.out.println("P");
	}
}
0