結果

問題 No.441 和か積
ユーザー hermione17hermione17
提出日時 2016-11-11 22:26:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 3,342 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-11-25 08:27:18
合計ジャッジ時間 8,719 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,096 KB
testcase_01 AC 120 ms
41,208 KB
testcase_02 AC 122 ms
41,244 KB
testcase_03 AC 121 ms
41,440 KB
testcase_04 AC 122 ms
41,412 KB
testcase_05 AC 122 ms
41,136 KB
testcase_06 AC 126 ms
41,524 KB
testcase_07 AC 126 ms
41,120 KB
testcase_08 AC 127 ms
41,148 KB
testcase_09 AC 125 ms
41,556 KB
testcase_10 AC 129 ms
41,420 KB
testcase_11 AC 121 ms
41,036 KB
testcase_12 AC 123 ms
41,080 KB
testcase_13 AC 125 ms
41,084 KB
testcase_14 AC 124 ms
41,264 KB
testcase_15 AC 125 ms
41,520 KB
testcase_16 AC 126 ms
41,032 KB
testcase_17 WA -
testcase_18 AC 130 ms
41,484 KB
testcase_19 AC 125 ms
41,048 KB
testcase_20 AC 128 ms
40,992 KB
testcase_21 AC 129 ms
41,136 KB
testcase_22 AC 133 ms
41,536 KB
testcase_23 AC 129 ms
41,548 KB
testcase_24 AC 124 ms
41,320 KB
testcase_25 AC 127 ms
41,292 KB
testcase_26 AC 115 ms
40,020 KB
testcase_27 AC 121 ms
41,092 KB
testcase_28 AC 128 ms
41,268 KB
testcase_29 AC 126 ms
41,248 KB
testcase_30 AC 112 ms
39,888 KB
testcase_31 AC 111 ms
40,028 KB
testcase_32 AC 126 ms
41,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y441 {
	Scanner in = new Scanner(System.in);
	PrintStream out = new PrintStream(System.out);

	Y441() throws Exception {
		String A = in.next();
		String B = in.next();
		
		if (A.equals(B) &&
				(A.equals("0") || A.equals("1") || A.equals("2"))) {
			out.println("E");
		} else if (A.equals("0") || A.equals("1") || B.equals("0") || B.equals("1")) {
			out.println("S");
		} else {
			out.println("P");
		}
	}

	public static void main(String argv[]) throws Exception {
		new Y441();
	}
}
0