結果

問題 No.441 和か積
ユーザー Minami ShotaMinami Shota
提出日時 2016-11-11 23:16:04
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 2,929 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 55,740 KB
最終ジャッジ日時 2024-11-25 09:28:36
合計ジャッジ時間 7,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
52,648 KB
testcase_01 AC 95 ms
52,524 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 119 ms
53,660 KB
testcase_09 AC 114 ms
54,028 KB
testcase_10 WA -
testcase_11 AC 93 ms
52,080 KB
testcase_12 AC 119 ms
53,944 KB
testcase_13 AC 105 ms
52,500 KB
testcase_14 AC 115 ms
53,980 KB
testcase_15 AC 116 ms
54,308 KB
testcase_16 AC 112 ms
53,700 KB
testcase_17 AC 115 ms
54,028 KB
testcase_18 AC 112 ms
53,928 KB
testcase_19 AC 110 ms
54,104 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 99 ms
52,784 KB
testcase_24 AC 108 ms
53,768 KB
testcase_25 AC 97 ms
52,516 KB
testcase_26 AC 108 ms
53,884 KB
testcase_27 AC 108 ms
54,280 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Hello {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		String x = scanner.next(), y = scanner.next();
		int a=0,b=0;

		if(x.length() < 4 && y.length() < 4) {
			a = Integer.parseInt(x);
			b = Integer.parseInt(y);
			System.out.println(a*b==a+b?"E":a*b>a+b?"P":"S");
		} else {
			System.out.println((a<2)||(b<2)?"S":"P");
		}
	}
}
0