結果

問題 No.441 和か積
ユーザー TakaTaka
提出日時 2016-11-16 16:17:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 2,390 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 42,228 KB
最終ジャッジ日時 2024-05-04 14:20:40
合計ジャッジ時間 7,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,980 KB
testcase_01 AC 131 ms
41,764 KB
testcase_02 AC 110 ms
41,964 KB
testcase_03 AC 121 ms
41,620 KB
testcase_04 AC 130 ms
41,696 KB
testcase_05 AC 132 ms
42,004 KB
testcase_06 AC 109 ms
41,424 KB
testcase_07 AC 123 ms
41,792 KB
testcase_08 AC 121 ms
41,996 KB
testcase_09 AC 111 ms
41,980 KB
testcase_10 AC 122 ms
41,884 KB
testcase_11 AC 106 ms
41,760 KB
testcase_12 WA -
testcase_13 AC 121 ms
41,740 KB
testcase_14 AC 146 ms
41,664 KB
testcase_15 AC 117 ms
41,996 KB
testcase_16 AC 116 ms
41,888 KB
testcase_17 AC 117 ms
41,780 KB
testcase_18 AC 111 ms
42,228 KB
testcase_19 AC 120 ms
41,696 KB
testcase_20 AC 119 ms
42,148 KB
testcase_21 AC 122 ms
41,868 KB
testcase_22 AC 135 ms
41,696 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 121 ms
41,664 KB
testcase_26 WA -
testcase_27 AC 120 ms
41,804 KB
testcase_28 AC 174 ms
41,992 KB
testcase_29 AC 170 ms
41,852 KB
testcase_30 AC 126 ms
41,860 KB
testcase_31 AC 109 ms
41,728 KB
testcase_32 AC 128 ms
41,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class map{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		double a=sc.nextDouble();
		double b=sc.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