結果

問題 No.441 和か積
ユーザー nebukuro09nebukuro09
提出日時 2016-11-11 22:21:29
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 1,000 ms
コード長 120 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-27 03:05:24
合計ジャッジ時間 1,319 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, raw_input().split())
if (a*b > a+b):
    print 'P'
elif (a*b == a+b):
    print 'E'
else:
    print 'S'
0