結果

問題 No.441 和か積
ユーザー ohana
提出日時 2023-10-20 10:49:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 128 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 53,360 KB
最終ジャッジ日時 2024-09-20 06:24:32
合計ジャッジ時間 2,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())

if (a, b) in {(0, 0), (2, 2)}:
    print("E")
else:
    print("S" if min(a, b) <= 1 else "P")
0