結果

問題 No.441 和か積
ユーザー YamaKasaYamaKasa
提出日時 2018-05-24 22:17:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-06-28 17:32:10
合計ジャッジ時間 6,450 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 113 ms
41,148 KB
testcase_02 AC 108 ms
40,064 KB
testcase_03 AC 96 ms
41,128 KB
testcase_04 AC 94 ms
39,892 KB
testcase_05 AC 108 ms
41,112 KB
testcase_06 AC 102 ms
40,972 KB
testcase_07 AC 96 ms
41,136 KB
testcase_08 AC 100 ms
40,988 KB
testcase_09 AC 108 ms
41,384 KB
testcase_10 AC 95 ms
41,528 KB
testcase_11 AC 123 ms
41,256 KB
testcase_12 WA -
testcase_13 AC 112 ms
41,292 KB
testcase_14 AC 108 ms
41,520 KB
testcase_15 WA -
testcase_16 AC 94 ms
41,184 KB
testcase_17 WA -
testcase_18 AC 106 ms
40,064 KB
testcase_19 AC 114 ms
41,140 KB
testcase_20 AC 114 ms
41,232 KB
testcase_21 AC 116 ms
41,304 KB
testcase_22 AC 115 ms
41,148 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 108 ms
40,168 KB
testcase_26 WA -
testcase_27 AC 102 ms
41,272 KB
testcase_28 AC 103 ms
41,156 KB
testcase_29 AC 96 ms
41,480 KB
testcase_30 AC 108 ms
41,216 KB
testcase_31 AC 105 ms
41,520 KB
testcase_32 AC 107 ms
40,152 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")) || (A.equals("1") && B.equals("1"))) {
			System.out.println("E");
		}else if(A.equals("0") || B.equals("0")) {
			System.out.println("S");
		}else {
			System.out.println("P");
		}
	}
}
0