結果

問題 No.441 和か積
ユーザー htensaihtensai
提出日時 2019-11-19 12:28:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 500 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-10-03 06:25:05
合計ジャッジ時間 7,345 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,116 KB
testcase_01 AC 125 ms
53,820 KB
testcase_02 AC 125 ms
54,128 KB
testcase_03 AC 128 ms
53,836 KB
testcase_04 AC 126 ms
54,008 KB
testcase_05 AC 126 ms
54,096 KB
testcase_06 AC 127 ms
54,000 KB
testcase_07 AC 125 ms
54,052 KB
testcase_08 AC 127 ms
54,136 KB
testcase_09 AC 115 ms
52,720 KB
testcase_10 AC 124 ms
53,968 KB
testcase_11 AC 125 ms
53,956 KB
testcase_12 AC 125 ms
54,156 KB
testcase_13 AC 125 ms
54,132 KB
testcase_14 AC 125 ms
53,768 KB
testcase_15 AC 124 ms
54,024 KB
testcase_16 AC 122 ms
54,120 KB
testcase_17 AC 120 ms
54,172 KB
testcase_18 AC 124 ms
53,800 KB
testcase_19 AC 124 ms
54,132 KB
testcase_20 AC 112 ms
52,732 KB
testcase_21 AC 126 ms
53,836 KB
testcase_22 AC 128 ms
53,824 KB
testcase_23 AC 128 ms
54,092 KB
testcase_24 AC 122 ms
54,088 KB
testcase_25 AC 125 ms
54,040 KB
testcase_26 AC 124 ms
53,880 KB
testcase_27 AC 120 ms
54,000 KB
testcase_28 AC 123 ms
54,012 KB
testcase_29 AC 128 ms
54,032 KB
testcase_30 AC 124 ms
53,844 KB
testcase_31 AC 125 ms
54,268 KB
testcase_32 AC 127 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		String a = sc.next();
		String b = sc.next();
		int aa = 100;
		int bb = 100;
		if (a.length() == 1) {
		    aa = Integer.parseInt(a);
		}
		if (b.length() == 1) {
		    bb = Integer.parseInt(b);
		}
		if (aa * bb > aa + bb) {
		    System.out.println("P");
		} else if (aa * bb == aa + bb) {
		    System.out.println("E");
		} else {
		    System.out.println("S");
		}
	}
}
0