結果

問題 No.441 和か積
ユーザー yamax3232yamax3232
提出日時 2017-02-10 17:24:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 332 bytes
コンパイル時間 3,363 ms
コンパイル使用メモリ 76,720 KB
実行使用メモリ 42,032 KB
最終ジャッジ日時 2024-06-08 02:41:51
合計ジャッジ時間 8,665 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,728 KB
testcase_01 AC 141 ms
41,388 KB
testcase_02 AC 130 ms
41,808 KB
testcase_03 AC 133 ms
41,484 KB
testcase_04 AC 131 ms
41,920 KB
testcase_05 AC 132 ms
42,004 KB
testcase_06 AC 135 ms
41,780 KB
testcase_07 AC 132 ms
41,864 KB
testcase_08 AC 127 ms
41,372 KB
testcase_09 AC 129 ms
42,032 KB
testcase_10 AC 125 ms
41,944 KB
testcase_11 AC 133 ms
41,652 KB
testcase_12 WA -
testcase_13 AC 129 ms
41,892 KB
testcase_14 AC 128 ms
41,060 KB
testcase_15 AC 131 ms
41,600 KB
testcase_16 AC 128 ms
41,664 KB
testcase_17 AC 127 ms
41,748 KB
testcase_18 AC 132 ms
42,032 KB
testcase_19 AC 134 ms
41,836 KB
testcase_20 AC 132 ms
41,680 KB
testcase_21 AC 145 ms
41,736 KB
testcase_22 AC 135 ms
41,620 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 131 ms
41,396 KB
testcase_26 WA -
testcase_27 AC 132 ms
41,648 KB
testcase_28 AC 133 ms
41,504 KB
testcase_29 AC 137 ms
41,664 KB
testcase_30 AC 136 ms
41,540 KB
testcase_31 AC 133 ms
41,620 KB
testcase_32 AC 137 ms
41,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class KashoHyoka{
	public static void main(String[] args){
	Scanner kb=new Scanner(System.in);
double a,b;
	a=kb.nextDouble();
	b=kb.nextDouble();
	if(a+b>a*b){
		System.out.println("S");
	}
	else if(a+b==a*b){
		System.out.println("E");
	}else{
		System.out.println("P");
	}
	
	kb.close();
	
	}

}
0