結果

問題 No.441 和か積
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 23:56:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 3,499 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-11-21 13:38:09
合計ジャッジ時間 7,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,944 KB
testcase_01 AC 117 ms
41,168 KB
testcase_02 AC 107 ms
41,104 KB
testcase_03 AC 122 ms
40,904 KB
testcase_04 AC 120 ms
41,128 KB
testcase_05 AC 121 ms
40,976 KB
testcase_06 AC 121 ms
41,288 KB
testcase_07 AC 120 ms
41,136 KB
testcase_08 AC 121 ms
41,064 KB
testcase_09 AC 112 ms
39,800 KB
testcase_10 AC 119 ms
41,028 KB
testcase_11 AC 118 ms
41,176 KB
testcase_12 AC 121 ms
41,060 KB
testcase_13 AC 118 ms
41,372 KB
testcase_14 AC 106 ms
41,108 KB
testcase_15 AC 119 ms
41,160 KB
testcase_16 AC 119 ms
41,256 KB
testcase_17 WA -
testcase_18 AC 121 ms
41,240 KB
testcase_19 AC 120 ms
40,988 KB
testcase_20 AC 124 ms
41,132 KB
testcase_21 AC 120 ms
41,252 KB
testcase_22 AC 131 ms
41,220 KB
testcase_23 AC 109 ms
41,100 KB
testcase_24 AC 120 ms
40,912 KB
testcase_25 AC 121 ms
41,312 KB
testcase_26 AC 115 ms
39,976 KB
testcase_27 AC 118 ms
40,912 KB
testcase_28 AC 109 ms
41,512 KB
testcase_29 AC 121 ms
41,316 KB
testcase_30 AC 114 ms
39,896 KB
testcase_31 AC 122 ms
41,184 KB
testcase_32 AC 122 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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