結果

問題 No.441 和か積
ユーザー shinwisteriashinwisteria
提出日時 2017-03-30 17:27:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 590 bytes
コンパイル時間 4,654 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-06-27 03:48:19
合計ジャッジ時間 9,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,436 KB
testcase_01 AC 110 ms
52,960 KB
testcase_02 AC 126 ms
54,176 KB
testcase_03 AC 127 ms
54,412 KB
testcase_04 AC 125 ms
54,148 KB
testcase_05 AC 127 ms
53,880 KB
testcase_06 AC 123 ms
54,008 KB
testcase_07 AC 127 ms
53,764 KB
testcase_08 AC 126 ms
53,944 KB
testcase_09 AC 125 ms
54,136 KB
testcase_10 AC 127 ms
54,048 KB
testcase_11 AC 122 ms
54,088 KB
testcase_12 AC 127 ms
54,172 KB
testcase_13 AC 124 ms
53,736 KB
testcase_14 AC 128 ms
54,288 KB
testcase_15 AC 109 ms
52,892 KB
testcase_16 AC 124 ms
53,900 KB
testcase_17 AC 126 ms
54,032 KB
testcase_18 AC 111 ms
53,852 KB
testcase_19 AC 124 ms
54,112 KB
testcase_20 AC 130 ms
53,544 KB
testcase_21 AC 131 ms
54,140 KB
testcase_22 AC 127 ms
53,864 KB
testcase_23 AC 128 ms
54,052 KB
testcase_24 AC 128 ms
54,188 KB
testcase_25 AC 125 ms
54,080 KB
testcase_26 AC 124 ms
53,748 KB
testcase_27 AC 132 ms
53,816 KB
testcase_28 AC 125 ms
54,144 KB
testcase_29 AC 123 ms
54,024 KB
testcase_30 AC 125 ms
53,972 KB
testcase_31 AC 125 ms
54,136 KB
testcase_32 AC 125 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Wakaseki {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String left = s.next(),right = s.next();
		//System.out.println(left + "  " + right);
		s.close();
		if(left.equals("0") && right.equals("0")){
			System.out.println("E");
		}else if(left.equals("0") || right.equals("0")){
			System.out.println("S");
		}else if(left.equals("1") || right.equals("1")){
			System.out.println("S");
		}else if(left.equals("2") && right.equals("2")){
			System.out.println("E");
		}else{
			System.out.println("P");
		}
	}

}
0