結果

問題 No.441 和か積
ユーザー yamax3232yamax3232
提出日時 2017-02-15 20:21:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 367 bytes
コンパイル時間 3,402 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-06-09 12:37:35
合計ジャッジ時間 7,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,196 KB
testcase_01 AC 128 ms
54,084 KB
testcase_02 AC 114 ms
53,624 KB
testcase_03 AC 119 ms
54,144 KB
testcase_04 AC 119 ms
53,992 KB
testcase_05 AC 107 ms
53,736 KB
testcase_06 AC 118 ms
53,976 KB
testcase_07 AC 105 ms
53,856 KB
testcase_08 AC 110 ms
53,564 KB
testcase_09 AC 117 ms
41,292 KB
testcase_10 AC 125 ms
41,540 KB
testcase_11 AC 114 ms
41,284 KB
testcase_12 WA -
testcase_13 AC 118 ms
41,392 KB
testcase_14 AC 115 ms
41,240 KB
testcase_15 AC 115 ms
41,416 KB
testcase_16 AC 119 ms
41,360 KB
testcase_17 AC 114 ms
41,968 KB
testcase_18 AC 121 ms
41,324 KB
testcase_19 AC 114 ms
41,568 KB
testcase_20 AC 106 ms
41,720 KB
testcase_21 AC 131 ms
42,012 KB
testcase_22 AC 127 ms
41,588 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 132 ms
41,548 KB
testcase_26 WA -
testcase_27 AC 119 ms
41,324 KB
testcase_28 AC 117 ms
41,572 KB
testcase_29 AC 130 ms
41,656 KB
testcase_30 AC 128 ms
41,412 KB
testcase_31 AC 126 ms
41,456 KB
testcase_32 AC 118 ms
41,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class WakaSeki {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
Scanner kb=new Scanner(System.in);
double a=kb.nextDouble(),b=kb.nextDouble();
if(a+b>a*b){
	System.out.println("S");
}else if(a+b<a*b){
	System.out.println("P");
}else{
	System.out.println("E");
}
kb.close();

	}

}
0