結果

問題 No.441 和か積
ユーザー Minami ShotaMinami Shota
提出日時 2016-11-11 23:16:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 3,049 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 55,924 KB
最終ジャッジ日時 2024-05-04 03:07:23
合計ジャッジ時間 7,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,108 KB
testcase_01 AC 101 ms
52,908 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 109 ms
54,016 KB
testcase_09 AC 97 ms
52,892 KB
testcase_10 WA -
testcase_11 AC 101 ms
53,324 KB
testcase_12 AC 101 ms
52,840 KB
testcase_13 AC 93 ms
52,828 KB
testcase_14 AC 113 ms
53,840 KB
testcase_15 AC 108 ms
54,164 KB
testcase_16 AC 94 ms
52,908 KB
testcase_17 AC 108 ms
54,076 KB
testcase_18 AC 104 ms
54,076 KB
testcase_19 AC 109 ms
54,088 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 111 ms
54,040 KB
testcase_24 AC 103 ms
53,344 KB
testcase_25 AC 118 ms
54,216 KB
testcase_26 AC 108 ms
54,192 KB
testcase_27 AC 108 ms
54,132 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