結果

問題 No.441 和か積
ユーザー dksnkzkdksnkzk
提出日時 2017-02-18 02:43:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 3,427 ms
コンパイル使用メモリ 77,128 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-06-09 13:45:56
合計ジャッジ時間 8,230 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,308 KB
testcase_01 AC 134 ms
54,296 KB
testcase_02 AC 117 ms
53,680 KB
testcase_03 AC 119 ms
53,536 KB
testcase_04 AC 124 ms
54,016 KB
testcase_05 AC 138 ms
54,132 KB
testcase_06 AC 142 ms
54,364 KB
testcase_07 AC 126 ms
54,200 KB
testcase_08 AC 140 ms
53,964 KB
testcase_09 AC 133 ms
54,096 KB
testcase_10 AC 126 ms
54,016 KB
testcase_11 AC 137 ms
54,264 KB
testcase_12 WA -
testcase_13 AC 114 ms
53,564 KB
testcase_14 AC 128 ms
53,620 KB
testcase_15 AC 139 ms
54,060 KB
testcase_16 AC 131 ms
54,044 KB
testcase_17 AC 122 ms
53,204 KB
testcase_18 AC 117 ms
53,716 KB
testcase_19 AC 114 ms
53,496 KB
testcase_20 AC 142 ms
54,168 KB
testcase_21 AC 113 ms
53,548 KB
testcase_22 AC 140 ms
54,052 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 130 ms
53,580 KB
testcase_26 WA -
testcase_27 AC 126 ms
53,408 KB
testcase_28 AC 134 ms
54,264 KB
testcase_29 AC 128 ms
54,200 KB
testcase_30 AC 133 ms
54,228 KB
testcase_31 AC 125 ms
54,244 KB
testcase_32 AC 127 ms
54,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Ex1
{
	public static void main(String[] args)
	{
		Scanner scan = new Scanner(System.in);
		double a = scan.nextDouble();
		double b = scan.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");
		}
	}
}
0