結果

問題 No.441 和か積
ユーザー kohei2019
提出日時 2022-01-26 00:48:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 155 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2024-12-17 22:20:44
合計ジャッジ時間 3,070 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int,input().split())
if A==0 and B ==0:
    print('E')
elif A<=1 or B<=1:
    print('S')
elif A==2 and B==2:
    print('E')
else:
    print('P')
0