結果

問題 No.441 和か積
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 22:44:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 617 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 77,588 KB
実行使用メモリ 56,104 KB
最終ジャッジ日時 2024-06-27 03:25:31
合計ジャッジ時間 7,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,796 KB
testcase_01 AC 133 ms
54,272 KB
testcase_02 AC 137 ms
53,832 KB
testcase_03 AC 137 ms
54,268 KB
testcase_04 AC 134 ms
53,792 KB
testcase_05 AC 136 ms
54,264 KB
testcase_06 AC 139 ms
54,112 KB
testcase_07 AC 137 ms
53,792 KB
testcase_08 AC 133 ms
53,764 KB
testcase_09 AC 140 ms
56,104 KB
testcase_10 AC 139 ms
53,880 KB
testcase_11 AC 134 ms
53,660 KB
testcase_12 AC 133 ms
53,636 KB
testcase_13 AC 133 ms
54,084 KB
testcase_14 AC 130 ms
53,944 KB
testcase_15 AC 133 ms
53,900 KB
testcase_16 AC 136 ms
53,620 KB
testcase_17 AC 129 ms
53,876 KB
testcase_18 AC 130 ms
53,888 KB
testcase_19 AC 131 ms
53,948 KB
testcase_20 AC 144 ms
53,908 KB
testcase_21 AC 133 ms
54,200 KB
testcase_22 AC 140 ms
54,068 KB
testcase_23 AC 139 ms
54,088 KB
testcase_24 AC 136 ms
54,256 KB
testcase_25 AC 137 ms
53,948 KB
testcase_26 AC 135 ms
53,916 KB
testcase_27 AC 131 ms
53,688 KB
testcase_28 AC 136 ms
54,012 KB
testcase_29 AC 139 ms
53,960 KB
testcase_30 AC 135 ms
54,168 KB
testcase_31 AC 131 ms
53,760 KB
testcase_32 AC 132 ms
53,964 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("E");
        }else 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