結果

問題 No.441 和か積
ユーザー jimanojimano
提出日時 2018-02-10 20:40:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 625 bytes
コンパイル時間 3,200 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 37,260 KB
最終ジャッジ日時 2024-06-27 03:57:39
合計ジャッジ時間 5,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,772 KB
testcase_01 AC 50 ms
36,580 KB
testcase_02 AC 50 ms
37,060 KB
testcase_03 AC 50 ms
36,708 KB
testcase_04 AC 50 ms
37,012 KB
testcase_05 AC 50 ms
37,260 KB
testcase_06 AC 51 ms
36,580 KB
testcase_07 AC 52 ms
36,800 KB
testcase_08 AC 51 ms
37,056 KB
testcase_09 AC 48 ms
36,580 KB
testcase_10 AC 51 ms
37,140 KB
testcase_11 AC 51 ms
36,920 KB
testcase_12 AC 51 ms
36,976 KB
testcase_13 AC 50 ms
36,532 KB
testcase_14 AC 50 ms
36,440 KB
testcase_15 AC 50 ms
36,856 KB
testcase_16 AC 51 ms
36,976 KB
testcase_17 AC 51 ms
36,932 KB
testcase_18 AC 53 ms
36,672 KB
testcase_19 AC 51 ms
37,132 KB
testcase_20 AC 52 ms
37,088 KB
testcase_21 AC 50 ms
36,580 KB
testcase_22 AC 51 ms
37,104 KB
testcase_23 AC 51 ms
37,260 KB
testcase_24 AC 49 ms
36,740 KB
testcase_25 AC 50 ms
36,560 KB
testcase_26 AC 53 ms
36,768 KB
testcase_27 AC 51 ms
37,056 KB
testcase_28 AC 51 ms
36,940 KB
testcase_29 AC 51 ms
36,772 KB
testcase_30 AC 53 ms
36,768 KB
testcase_31 AC 51 ms
36,960 KB
testcase_32 AC 50 ms
36,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class No0441 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] str = br.readLine().split(" ");
		BigInteger a = new BigInteger(str[0]);
		BigInteger b = new BigInteger(str[1]);

		int res = a.add(b).compareTo(a.multiply(b));
		if (res == 1) {
			System.out.println("S");
		} else if (res == 0) {
			System.out.println("E");
		} else {
			System.out.println("P");
		}
	}
}
0