結果

問題 No.441 和か積
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 22:30:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-11-25 08:29:05
合計ジャッジ時間 6,205 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,728 KB
testcase_01 AC 99 ms
52,576 KB
testcase_02 AC 113 ms
53,936 KB
testcase_03 AC 113 ms
53,932 KB
testcase_04 AC 99 ms
52,760 KB
testcase_05 AC 112 ms
53,788 KB
testcase_06 AC 115 ms
54,012 KB
testcase_07 AC 117 ms
53,768 KB
testcase_08 AC 110 ms
53,888 KB
testcase_09 AC 109 ms
53,824 KB
testcase_10 AC 116 ms
53,876 KB
testcase_11 WA -
testcase_12 AC 112 ms
54,008 KB
testcase_13 AC 103 ms
53,160 KB
testcase_14 AC 115 ms
53,676 KB
testcase_15 AC 113 ms
53,880 KB
testcase_16 AC 100 ms
52,908 KB
testcase_17 AC 111 ms
53,816 KB
testcase_18 AC 103 ms
53,100 KB
testcase_19 AC 114 ms
53,700 KB
testcase_20 AC 116 ms
53,768 KB
testcase_21 AC 101 ms
52,588 KB
testcase_22 AC 115 ms
54,020 KB
testcase_23 AC 105 ms
52,888 KB
testcase_24 AC 115 ms
54,088 KB
testcase_25 AC 101 ms
52,528 KB
testcase_26 AC 115 ms
53,708 KB
testcase_27 AC 101 ms
52,816 KB
testcase_28 AC 101 ms
52,828 KB
testcase_29 AC 109 ms
53,808 KB
testcase_30 AC 101 ms
52,856 KB
testcase_31 AC 100 ms
52,800 KB
testcase_32 AC 113 ms
53,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String A = sc.next();
        String B = sc.next();
        
        if("0".equals(A) || "0".equals(B) ){
            System.out.println("S");
        }else if( "1".equals(A) || "1".equals(B) ){
            System.out.println("S");
        }else if( "2".equals(A) && "2".equals(B) ){
            System.out.println("E");
        }else{
            System.out.println("P");
        }
    }
}
0