結果

問題 No.441 和か積
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 23:57:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 657 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-06-27 03:57:46
合計ジャッジ時間 7,344 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,796 KB
testcase_01 AC 123 ms
54,124 KB
testcase_02 AC 127 ms
54,204 KB
testcase_03 AC 127 ms
53,916 KB
testcase_04 AC 124 ms
54,324 KB
testcase_05 AC 124 ms
54,204 KB
testcase_06 AC 124 ms
53,780 KB
testcase_07 AC 123 ms
53,732 KB
testcase_08 AC 112 ms
52,588 KB
testcase_09 AC 125 ms
54,164 KB
testcase_10 AC 124 ms
54,164 KB
testcase_11 AC 124 ms
53,628 KB
testcase_12 AC 124 ms
53,920 KB
testcase_13 AC 122 ms
54,232 KB
testcase_14 AC 122 ms
53,736 KB
testcase_15 AC 123 ms
53,780 KB
testcase_16 AC 111 ms
52,808 KB
testcase_17 AC 120 ms
53,984 KB
testcase_18 AC 124 ms
54,036 KB
testcase_19 AC 124 ms
54,004 KB
testcase_20 AC 127 ms
54,016 KB
testcase_21 AC 124 ms
54,164 KB
testcase_22 AC 125 ms
53,972 KB
testcase_23 AC 125 ms
53,776 KB
testcase_24 AC 116 ms
53,032 KB
testcase_25 AC 125 ms
54,100 KB
testcase_26 AC 124 ms
53,796 KB
testcase_27 AC 121 ms
53,988 KB
testcase_28 AC 127 ms
54,204 KB
testcase_29 AC 127 ms
54,216 KB
testcase_30 AC 127 ms
53,864 KB
testcase_31 AC 123 ms
54,120 KB
testcase_32 AC 111 ms
52,980 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 if (a.equals("1")&&b.equals("1")) {
			System.out.println("S");
		}
		else {
			System.out.println("P");
		}
	}
}
0