結果

問題 No.441 和か積
ユーザー nekoneko
提出日時 2019-11-14 22:56:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 105 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 11,740 KB
実行使用メモリ 10,104 KB
最終ジャッジ日時 2023-10-22 03:08:42
合計ジャッジ時間 2,123 ms
ジャッジサーバーID
(参考情報)
judge11 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,048 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 29 ms
10,048 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 31 ms
10,048 KB
testcase_13 AC 30 ms
10,048 KB
testcase_14 RE -
testcase_15 AC 29 ms
10,048 KB
testcase_16 AC 29 ms
10,048 KB
testcase_17 AC 29 ms
10,048 KB
testcase_18 AC 30 ms
10,048 KB
testcase_19 AC 30 ms
10,048 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 30 ms
10,048 KB
testcase_24 AC 30 ms
10,048 KB
testcase_25 AC 34 ms
10,048 KB
testcase_26 AC 33 ms
10,048 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
if a+b>a*b:
    print("S")
elif a+B<a*b:
    print("P")
else:
    print("E")
0