結果

問題 No.441 和か積
ユーザー tentententen
提出日時 2020-09-12 23:18:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 631 bytes
コンパイル時間 3,442 ms
コンパイル使用メモリ 83,684 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-06-10 19:08:04
合計ジャッジ時間 7,697 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,920 KB
testcase_01 AC 129 ms
41,100 KB
testcase_02 AC 117 ms
40,056 KB
testcase_03 AC 131 ms
40,980 KB
testcase_04 AC 127 ms
41,256 KB
testcase_05 AC 127 ms
40,792 KB
testcase_06 AC 131 ms
40,972 KB
testcase_07 AC 127 ms
40,880 KB
testcase_08 AC 123 ms
41,080 KB
testcase_09 AC 126 ms
41,272 KB
testcase_10 AC 126 ms
40,924 KB
testcase_11 AC 123 ms
40,948 KB
testcase_12 AC 124 ms
41,208 KB
testcase_13 AC 128 ms
41,432 KB
testcase_14 AC 124 ms
40,900 KB
testcase_15 AC 125 ms
40,812 KB
testcase_16 AC 129 ms
40,752 KB
testcase_17 AC 126 ms
41,048 KB
testcase_18 AC 127 ms
40,916 KB
testcase_19 AC 124 ms
41,128 KB
testcase_20 AC 134 ms
41,040 KB
testcase_21 AC 127 ms
41,056 KB
testcase_22 AC 130 ms
40,816 KB
testcase_23 AC 119 ms
40,928 KB
testcase_24 AC 111 ms
39,848 KB
testcase_25 AC 126 ms
41,024 KB
testcase_26 AC 126 ms
41,000 KB
testcase_27 AC 126 ms
41,448 KB
testcase_28 AC 124 ms
41,228 KB
testcase_29 AC 125 ms
40,872 KB
testcase_30 AC 125 ms
41,048 KB
testcase_31 AC 125 ms
41,308 KB
testcase_32 AC 129 ms
41,344 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 aInt;
    	if (a.length() == 1) {
    	    aInt = Integer.parseInt(a);
    	} else {
    	    aInt = 3;
    	}
    	int bInt;
    	if (b.length() == 1) {
    	    bInt = Integer.parseInt(b);
    	} else {
    	    bInt = 3;
    	}
    	if (aInt * bInt == aInt + bInt) {
    	    System.out.println("E");
    	} else if (aInt * bInt > aInt + bInt) {
    	    System.out.println("P");
    	} else {
    	    System.out.println("S");
    	}
	}
}
0