結果

問題 No.441 和か積
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-27 19:44:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 566 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 74,972 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-06-27 03:56:00
合計ジャッジ時間 8,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
39,932 KB
testcase_01 AC 119 ms
40,904 KB
testcase_02 AC 108 ms
39,832 KB
testcase_03 AC 119 ms
41,200 KB
testcase_04 AC 120 ms
41,236 KB
testcase_05 AC 121 ms
41,236 KB
testcase_06 AC 119 ms
41,136 KB
testcase_07 AC 107 ms
40,332 KB
testcase_08 AC 120 ms
41,080 KB
testcase_09 AC 119 ms
41,052 KB
testcase_10 AC 122 ms
41,032 KB
testcase_11 AC 120 ms
41,268 KB
testcase_12 AC 121 ms
41,000 KB
testcase_13 AC 114 ms
40,244 KB
testcase_14 AC 119 ms
40,920 KB
testcase_15 AC 120 ms
41,036 KB
testcase_16 AC 118 ms
41,284 KB
testcase_17 AC 120 ms
41,096 KB
testcase_18 AC 123 ms
40,916 KB
testcase_19 AC 102 ms
39,944 KB
testcase_20 AC 124 ms
41,068 KB
testcase_21 AC 123 ms
41,104 KB
testcase_22 AC 124 ms
40,940 KB
testcase_23 AC 122 ms
40,932 KB
testcase_24 AC 120 ms
41,016 KB
testcase_25 AC 120 ms
41,012 KB
testcase_26 AC 121 ms
41,252 KB
testcase_27 AC 106 ms
39,840 KB
testcase_28 AC 122 ms
40,932 KB
testcase_29 AC 109 ms
40,060 KB
testcase_30 AC 123 ms
41,052 KB
testcase_31 AC 107 ms
39,780 KB
testcase_32 AC 115 ms
40,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No441 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        String a = s.next();
        String b = s.next();
        int aa = getAbstracted(a);
        int bb = getAbstracted(b);
        String out = aa * bb > aa + bb ? "P" : aa + bb > aa * bb ? "S" : "E";
        System.out.println(out);
    }

    private static int getAbstracted(String str) {
        if (str.length() > 2) {
            return 3;
        } else {
            return Integer.parseInt(str);
        }
    }
}
0