結果

問題 No.441 和か積
ユーザー YamaKasaYamaKasa
提出日時 2018-05-24 22:19:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 492 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-06-28 17:32:26
合計ジャッジ時間 6,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,772 KB
testcase_01 AC 113 ms
40,260 KB
testcase_02 AC 113 ms
41,144 KB
testcase_03 AC 119 ms
40,924 KB
testcase_04 AC 113 ms
41,172 KB
testcase_05 AC 113 ms
41,288 KB
testcase_06 AC 116 ms
41,404 KB
testcase_07 AC 117 ms
41,168 KB
testcase_08 AC 118 ms
41,096 KB
testcase_09 AC 115 ms
40,872 KB
testcase_10 AC 120 ms
40,996 KB
testcase_11 AC 115 ms
40,320 KB
testcase_12 AC 117 ms
41,512 KB
testcase_13 AC 105 ms
39,860 KB
testcase_14 AC 118 ms
41,340 KB
testcase_15 AC 115 ms
40,236 KB
testcase_16 AC 122 ms
41,356 KB
testcase_17 AC 112 ms
41,192 KB
testcase_18 AC 121 ms
41,260 KB
testcase_19 AC 119 ms
41,096 KB
testcase_20 AC 122 ms
41,420 KB
testcase_21 AC 119 ms
41,160 KB
testcase_22 AC 120 ms
41,004 KB
testcase_23 AC 111 ms
40,160 KB
testcase_24 AC 124 ms
41,216 KB
testcase_25 AC 123 ms
41,032 KB
testcase_26 AC 122 ms
41,172 KB
testcase_27 AC 115 ms
40,056 KB
testcase_28 AC 124 ms
41,392 KB
testcase_29 AC 107 ms
40,312 KB
testcase_30 AC 121 ms
41,384 KB
testcase_31 AC 115 ms
40,992 KB
testcase_32 AC 118 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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