結果

問題 No.441 和か積
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-27 19:43:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 4,643 ms
コンパイル使用メモリ 83,520 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-11-21 21:22:26
合計ジャッジ時間 8,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 120 ms
41,108 KB
testcase_02 AC 117 ms
41,012 KB
testcase_03 AC 109 ms
40,200 KB
testcase_04 AC 106 ms
39,984 KB
testcase_05 AC 119 ms
41,428 KB
testcase_06 AC 105 ms
39,984 KB
testcase_07 AC 116 ms
41,148 KB
testcase_08 WA -
testcase_09 AC 105 ms
39,872 KB
testcase_10 AC 116 ms
41,052 KB
testcase_11 AC 110 ms
40,508 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 115 ms
41,032 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 120 ms
41,088 KB
testcase_21 AC 108 ms
40,052 KB
testcase_22 AC 120 ms
41,124 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 121 ms
41,116 KB
testcase_28 AC 123 ms
41,308 KB
testcase_29 AC 118 ms
41,168 KB
testcase_30 AC 101 ms
39,740 KB
testcase_31 AC 118 ms
40,972 KB
testcase_32 AC 117 ms
41,072 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