結果

問題 No.441 和か積
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-27 19:32:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 698 bytes
コンパイル時間 4,771 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-11-21 21:22:10
合計ジャッジ時間 10,316 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,068 KB
testcase_01 AC 127 ms
54,128 KB
testcase_02 AC 129 ms
53,956 KB
testcase_03 AC 130 ms
53,928 KB
testcase_04 AC 130 ms
53,988 KB
testcase_05 AC 131 ms
54,000 KB
testcase_06 AC 131 ms
53,608 KB
testcase_07 AC 128 ms
54,104 KB
testcase_08 AC 128 ms
53,840 KB
testcase_09 AC 131 ms
53,916 KB
testcase_10 AC 130 ms
53,856 KB
testcase_11 WA -
testcase_12 AC 133 ms
53,708 KB
testcase_13 AC 129 ms
53,820 KB
testcase_14 AC 129 ms
53,984 KB
testcase_15 AC 132 ms
54,344 KB
testcase_16 AC 132 ms
54,296 KB
testcase_17 AC 129 ms
54,208 KB
testcase_18 AC 129 ms
54,092 KB
testcase_19 AC 128 ms
53,732 KB
testcase_20 AC 132 ms
53,924 KB
testcase_21 AC 134 ms
53,928 KB
testcase_22 AC 136 ms
54,144 KB
testcase_23 AC 135 ms
54,008 KB
testcase_24 AC 134 ms
53,656 KB
testcase_25 AC 132 ms
54,048 KB
testcase_26 AC 128 ms
54,040 KB
testcase_27 AC 128 ms
54,140 KB
testcase_28 AC 130 ms
54,040 KB
testcase_29 AC 132 ms
54,068 KB
testcase_30 AC 131 ms
53,816 KB
testcase_31 AC 132 ms
53,972 KB
testcase_32 AC 133 ms
53,708 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 = compareWithTwo(a);
        int bb = compareWithTwo(b);
        if (aa == 0 && bb == 0) {
            System.out.println("E");
        } else if (aa >= 0 && bb >= 0) {
            System.out.println("P");
        } else {
            System.out.println("S");
        }
    }

    private static int compareWithTwo(String str) {
        if (str.length() == 1) {
            int num = Integer.parseInt(str);
            return Integer.compare(num, 2);
        }
        return 1;
    }
}
0